From d2f6a7e0b539173975eae7ecddc8129ace65044d Mon Sep 17 00:00:00 2001
From: lisy <linlangsur163@163.com>
Date: 星期五, 04 八月 2023 14:40:38 +0800
Subject: [PATCH] app端:开始上课-上课预约记录的周判断bug

---
 cloud-server-management/src/main/resources/mapper/TStoreMapper.xml |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/cloud-server-management/src/main/resources/mapper/TStoreMapper.xml b/cloud-server-management/src/main/resources/mapper/TStoreMapper.xml
index 3b8bfc2..0dd0a94 100644
--- a/cloud-server-management/src/main/resources/mapper/TStoreMapper.xml
+++ b/cloud-server-management/src/main/resources/mapper/TStoreMapper.xml
@@ -44,5 +44,18 @@
     <select id="queryListOfpage" resultType="java.util.Map">
         SELECT id, cityManagerId, province, city, `name`
         from t_store
+        where 1=1
+        <if test="provinceCode != null">
+            and provinceCode = #{provinceCode}
+        </if>
+        <if test="cityCode != null">
+            and cityCode = #{cityCode}
+        </if>
+        <if test="cityManagerId != null">
+            and cityManagerId = #{cityManagerId}
+        </if>
+        <if test="storeName != null and storeName != ' '">
+            and `name` like CONCAT('%',#{storeName},'%')
+        </if>
     </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.7.1