From faafdde06f5b095ab42e79d0493c6a2ad1c478b4 Mon Sep 17 00:00:00 2001 From: codeliu <1873441552@qq.com> Date: Fri, 22 Mar 2024 17:37:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=BC=80=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/merchant/MerchantIntentionRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/repositories/system/merchant/MerchantIntentionRepository.php b/app/common/repositories/system/merchant/MerchantIntentionRepository.php index 42370031..04513bb2 100644 --- a/app/common/repositories/system/merchant/MerchantIntentionRepository.php +++ b/app/common/repositories/system/merchant/MerchantIntentionRepository.php @@ -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();