- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
86 lines
2.6 KiB
PHP
86 lines
2.6 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
declare (strict_types=1);
|
|
|
|
namespace app\dao\activity\newcomer;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\activity\newcomer\StoreNewcomer;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
|
|
/**
|
|
* 新人礼商品
|
|
* Class StoreNewcomerDao
|
|
* @package app\dao\activity\newcomer
|
|
*/
|
|
class StoreNewcomerDao extends BaseDao
|
|
{
|
|
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return StoreNewcomer::class;
|
|
}
|
|
|
|
/**
|
|
* 搜索
|
|
* @param array $where
|
|
* @param bool $search
|
|
* @return BaseModel
|
|
* @throws \ReflectionException
|
|
*/
|
|
public function search(array $where = [], bool $search = false)
|
|
{
|
|
return parent::search($where, $search)->when(isset($where['storeProductId']), function ($query) {
|
|
$query->where('product_id', 'IN', function ($query) {
|
|
$query->name('store_product')->where('is_del', 0)->field('id');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 新人专享商品列表
|
|
* @param array $where
|
|
* @param string $field
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @param array $with
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getList(array $where, string $field = '*', int $page = 0, int $limit = 0, array $with = [])
|
|
{
|
|
return $this->search($where)->field($field)
|
|
->when($with, function ($query) use ($with) {
|
|
$query->with($with);
|
|
})->when(isset($where['priceOrder']) && $where['priceOrder'] != '', function ($query) use ($where) {
|
|
if ($where['priceOrder'] === 'desc') {
|
|
$query->order("price desc");
|
|
} else {
|
|
$query->order("price asc");
|
|
}
|
|
})->when(isset($where['salesOrder']) && $where['salesOrder'] != '', function ($query) use ($where) {
|
|
if ($where['salesOrder'] === 'desc') {
|
|
$query->order("sales desc");
|
|
} else {
|
|
$query->order("sales asc");
|
|
}
|
|
})->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->when(!$page && $limit, function ($query) use ($limit) {
|
|
$query->limit($limit);
|
|
})->order('id desc')->select()->toArray();
|
|
}
|
|
|
|
|
|
}
|