Browse Source

群员查询,手机号改为模糊查询

hotfix/yujt_opt
zhangyuan 5 years ago
parent
commit
d7cb2926d1
  1. 2
      epdc-cloud-property/src/main/resources/mapper/smile/group/UserGroupDao.xml

2
epdc-cloud-property/src/main/resources/mapper/smile/group/UserGroupDao.xml

@ -21,7 +21,7 @@
AND ugp.NICKNAME LIKE concat('%', trim(#{nickname}), '%') AND ugp.NICKNAME LIKE concat('%', trim(#{nickname}), '%')
</if> </if>
<if test="mobile != null and mobile != ''"> <if test="mobile != null and mobile != ''">
AND ugp.MOBILE = trim(#{mobile}) AND ugp.MOBILE LIKE concat('%', trim(#{mobile}), '%')
</if> </if>
ORDER BY ORDER BY
ugp.LORD_FLAG DESC, ugp.LORD_FLAG DESC,

Loading…
Cancel
Save