打开限制

This commit is contained in:
codeliu 2024-03-22 17:37:02 +08:00
parent ce84c4c8aa
commit faafdde06f

View File

@ -41,7 +41,7 @@ class MerchantIntentionRepository extends BaseRepository
public function getList(array $where, $page, $limit)
{
// $where['type'] = [1,2];
$where['type'] = [1,2];
$query = $this->dao->search($where);
$count = $query->count();
$list = $query->page($page, $limit)->order('create_time DESC , status ASC')->with(['merchantCategory', 'merchantType'])->select();