lixuliang
2024-09-10 92786e22bbc0c6d99fac274bfa67d09c6772597a
se-modules/se-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -130,6 +130,11 @@
      <include refid="selectUserVo"/>
      where u.user_id = #{userId}
   </select>
   <select id="selectUserByIds" resultMap="SysUserResult">
      <include refid="selectUserVo"/>
      where u.user_id in (${ids})
   </select>
   
   <select id="checkUserNameUnique" parameterType="String" resultMap="SysUserResult">
      select user_id, user_name from sys_user where user_name = #{userName} and del_flag = '0' limit 1