| | |
| | | sys_user u |
| | | left join sys_dept d on u.dept_id = d.dept_id |
| | | where u.del_flag = '0' |
| | | <if test="user.userId != null and user.userId != 0"> |
| | | AND u.user_id = #{user.userId} |
| | | </if> |
| | | <if test="user.userName != null and user.userName != ''"> |
| | | AND u.user_name like concat('%', #{user.userName}, '%') |
| | | </if> |
| | |
| | | sys_user u |
| | | left join sys_dept d on u.dept_id = d.dept_id |
| | | where u.del_flag = '0' |
| | | <if test="userId != null and userId != 0"> |
| | | AND u.user_id = #{userId} |
| | | </if> |
| | | <if test="userName != null and userName != ''"> |
| | | AND u.user_name like concat('%', #{userName}, '%') |
| | | </if> |
| | |
| | | |
| | | <select id="selectUserByUserName" parameterType="String" resultMap="SysUserResult"> |
| | | <include refid="selectUserVo"/> |
| | | where u.user_name = #{userName} |
| | | where u.del_flag = '0' and u.user_name = #{userName} |
| | | </select> |
| | | |
| | | <select id="selectUserById" parameterType="Long" resultMap="SysUserResult"> |
| | | <include refid="selectUserVo"/> |
| | | where u.user_id = #{userId} |
| | | where u.del_flag = '0' and u.user_id = #{userId} |
| | | </select> |
| | | |
| | | |