13693261870
2024-08-30 a8545de2367c8df88f829f576176fd1c1ec93273
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