From ddb90cc393ab5b80ed58c99a16a78528588dd73c Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Wed, 11 Aug 2021 17:33:56 +0800 Subject: [PATCH] shanjifa --- zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml b/zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml index 321834c..5ba68f3 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml @@ -960,7 +960,7 @@ </if> <if test="(record.suName!=null and record.suName!='') or (record.suName!='' and record.suName==0)"> - and su_name like concat('%',#{record.suName},'%') + and (su_name like concat('%',concat(#{record.suName},'%')) or su_tel = #{record.suName}) </if> <if test="(record.suTel!=null and record.suTel!='') or (record.suTel!='' and record.suTel==0)"> @@ -1318,5 +1318,11 @@ where id=#{id} </update> + <select id="selectAppVersion" resultType="com.matrix.system.hive.bean.AppVersion"> + select * from app_version + </select> + <select id="selectSysUsersByName" resultMap="SysUsersMap"> + select * from sys_users where su_name=#{name} + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1