From 93d6fdb255ebd9d33adebc4e96ecc5f74b6281ea Mon Sep 17 00:00:00 2001
From: liuhaonan <konodioda2333@vip.qq.com>
Date: 星期二, 08 三月 2022 14:11:13 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
dao/src/main/resources/mapper/ClientMapper.xml | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/dao/src/main/resources/mapper/ClientMapper.xml b/dao/src/main/resources/mapper/ClientMapper.xml
index 0d57080..cf57555 100644
--- a/dao/src/main/resources/mapper/ClientMapper.xml
+++ b/dao/src/main/resources/mapper/ClientMapper.xml
@@ -10,14 +10,17 @@
<result property="clientSuperior" column="client_superior" jdbcType="VARCHAR"/>
<result property="linkMan" column="linkman" jdbcType="VARCHAR"/>
<result property="mobile" column="mobile" jdbcType="VARCHAR"/>
+ <result property="password" column="password" jdbcType="VARCHAR"/>
<result property="countLight" column="count_light" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
- <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
</resultMap>
<select id="clientList" resultType="com.sandu.ximon.dao.domain.Client">
select * from client where superiorId=#{userId}
</select>
+ <select id="findClientIdByName" resultType="java.lang.Long">
+ select id from client where client_name=#{belongsClient}
+ </select>
</mapper>
\ No newline at end of file
--
Gitblit v1.9.3