From 8e21986572787b4280f6d9ec91f1d903edca4d95 Mon Sep 17 00:00:00 2001
From: tqs <56479841@qq.com>
Date: 星期二, 11 十月 2022 08:46:50 +0800
Subject: [PATCH] #
---
src/main/resources/mapper/CstmrMapper.xml | 45 +++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 43 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/mapper/CstmrMapper.xml b/src/main/resources/mapper/CstmrMapper.xml
index 8279834..35ca255 100644
--- a/src/main/resources/mapper/CstmrMapper.xml
+++ b/src/main/resources/mapper/CstmrMapper.xml
@@ -33,8 +33,49 @@
</resultMap>
- <select id="selectCstmrByNewestUuid" resultMap="BaseResultMap">
- select * from man_cstmr where 1=1 order by uuid + 0 desc
+ <select id="selectByUuid" resultMap="BaseResultMap">
+ select * from man_cstmr
+ where 1=1
+ and uuid = #{uuid}
+ <if test="hostId != null">
+ and host_id = #{hostId}
+ </if>
</select>
+ <select id="selectCstmrByNewestUuid" resultMap="BaseResultMap">
+ select top 1 * from man_cstmr
+ where 1=1
+ <if test="hostId != null">
+ and host_id = #{hostId}
+ </if>
+ order by uuid + 0 desc
+ </select>
+
+ <select id="listByPage" resultMap="BaseResultMap">
+ SELECT
+ mc.*
+ FROM man_cstmr mc
+ LEFT JOIN sys_dept sd ON mc.dept_id = sd.id
+ WHERE 1=1
+ AND (CHARINDEX(','+#{deptId}+',', ','+sd.path+',') > 0 OR sd.id = #{deptId})
+ <if test="hostId != null and hostId != ''">
+ and mc.host_id = #{hostId}
+ </if>
+ <if test="condition != null and condition != ''">
+ and (
+ mc.uuid like concat('%',#{condition},'%')
+ or mc.name like concat('%',#{condition},'%')
+ or mc.simple like concat('%',#{condition},'%')
+ or mc.rela like concat('%',#{condition},'%')
+ or mc.tel like concat('%',#{condition},'%')
+ or mc.contacts like concat('%',#{condition},'%')
+ or mc.remarks like concat('%',#{condition},'%')
+ or mc.director like concat('%',#{condition},'%')
+ or mc.addr like concat('%',#{condition},'%')
+ )
+ </if>
+ ORDER BY mc.create_time DESC
+ </select>
+
+
</mapper>
--
Gitblit v1.9.1