This commit is contained in:
luofei 2024-03-22 17:44:29 +08:00
commit 09b800960e

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();