From 2bc39e9183e62818dcfbb3cdfc6cdca5dfa43923 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 12 Jan 2021 15:37:52 +0800 Subject: [PATCH] modify --- zq-erp/src/main/resources/mybatis/mapper/common/SysUsersDao.xml | 5 ++--- 1 files changed, 2 insertions(+), 3 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 05a7862..9534312 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)"> @@ -1273,7 +1273,7 @@ <select id="selectByRoleName" resultMap="SysUsersMap"> SELECT - a.* + distinct a.* FROM sys_users a LEFT JOIN sys_role r ON FIND_IN_SET(r.role_id, a.role_ids) @@ -1290,7 +1290,6 @@ <if test="users.shopId !=null and users.shopId !=''"> AND a.SHOP_ID = #{users.shopId} </if> - ORDER BY a.SIGN_ORDER IS NULL, a.SIGN_ORDER -- Gitblit v1.9.1