From bf765893039bc7968b8160a70bda778526dca98c Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期二, 31 十二月 2024 15:28:19 +0800
Subject: [PATCH] 定时任务

---
 manage/src/main/resources/mapping/TLineUpMapper.xml |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/manage/src/main/resources/mapping/TLineUpMapper.xml b/manage/src/main/resources/mapping/TLineUpMapper.xml
index 0a2778c..11ee095 100644
--- a/manage/src/main/resources/mapping/TLineUpMapper.xml
+++ b/manage/src/main/resources/mapping/TLineUpMapper.xml
@@ -24,7 +24,7 @@
     <select id="pageList" resultType="com.jilongda.manage.model.TLineUp">
         select t.*,u.name,u.phone,u.age,u.gender,u.realName,s.name storeName,o.name optometrist
         from t_line_up t
-        left join t_user u on t.userId = u.id
+        left join t_app_user u on t.userId = u.id
         left join t_optometrist o on t.optometristId = o.id
         left join t_store s on t.storeId = s.id
         <where>
@@ -40,6 +40,8 @@
             <if test="query.storeId != null">
                 and s.id = #{query.storeId}
             </if>
+            and t.isDelete =  ${@com.jilongda.common.enums.DisabledEnum@NO.getCode()}
+
         </where>
         order by t.createTime desc
     </select>

--
Gitblit v1.7.1