手机端查人接口 以及 部分涉及到开耀的接口 加了备注 我先改了一下 等开耀回来看一下

This commit is contained in:
yuezhihang
2021-12-13 16:17:25 +08:00
parent c87d843055
commit 301ba42d65
7 changed files with 51 additions and 8 deletions
@@ -793,4 +793,14 @@
</if>
</select>
<select id="getUserByName" resultType="com.adc.da.sys.entity.UserPhoneDTO">
select USID as usId ,concat( UNAME,concat(concat('(',ts_user.USID),')')) as userName from ts_user
where 1=1
<if test="name != null and name != '' ">
ts_user.UNAME like concat(concat('%',#{name}),'%') or
ts_user.USID like concat(concat('%',#{name}),'%')
</if>
</select>
</mapper>