| | |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="cameraPriority" column="camera_priority"/> |
| | | <result property="rongCloudToken" column="rong_cloud_token"/> |
| | | <result property="remark" column="remark"/> |
| | | <association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult"/> |
| | | <collection property="roles" javaType="java.util.List" resultMap="RoleResult"/> |
| | |
| | | u.create_by, |
| | | u.create_time, |
| | | u.camera_priority, |
| | | u.rong_cloud_token, |
| | | u.remark, |
| | | d.dept_id, |
| | | d.parent_id, |
| | |
| | | </sql> |
| | | |
| | | <select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult"> |
| | | select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.sex, u.status, |
| | | u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.camera_priority, d.dept_name, d.leader from sys_user |
| | | u |
| | | left join sys_dept d on u.dept_id = d.dept_id |
| | | -- select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.sex, u.status, |
| | | -- u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.camera_priority,u.rong_cloud_token, d.dept_name, d.leader from sys_user u |
| | | -- left join sys_dept d on u.dept_id = d.dept_id |
| | | <include refid="selectUserVo"/> |
| | | where u.del_flag = '0' |
| | | <if test="userId != null and userId != ''"> |
| | | AND u.user_id = #{userId} |
| | |
| | | <!-- 数据范围过滤 --> |
| | | ${params.dataScope} |
| | | </select> |
| | | |
| | | <select id="selectAppUserList" parameterType="SysUser" resultMap="SysUserResult"> |
| | | <include refid="selectUserVo"/> |
| | | where u.del_flag = '0' |
| | | and LOWER(r.role_name) like '%app%' |
| | | <if test="deptId != null and deptId != 0"> |
| | | AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE cast(#{deptId} as |
| | | varchar) = any(string_to_array(ancestors,',')) )) |
| | | </if> |
| | | <!-- 数据范围过滤 --> |
| | | ${params.dataScope} |
| | | </select> |
| | | <select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult"> |
| | | select distinct u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.phonenumber, u.status, u.create_time |
| | | from sys_user u |
| | |
| | | |
| | | <insert id="insertUser" parameterType="SysUser" useGeneratedKeys="true" keyProperty="userId"> |
| | | insert into sys_user( |
| | | <if test="userId != null and userId != 0">user_id,</if> |
| | | <if test="userId != null and userId != ''">user_id,</if> |
| | | <if test="deptId != null and deptId != 0">dept_id,</if> |
| | | <if test="userName != null and userName != ''">user_name,</if> |
| | | <if test="nickName != null and nickName != ''">nick_name,</if> |
| | |
| | | <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="cameraPriority != null">camera_priority = #{cameraPriority},</if> |
| | | <if test="rongCloudToken != null">rong_cloud_token = #{rongCloudToken},</if> |
| | | update_time = now() |
| | | </set> |
| | | where user_id = #{userId} |
| | |
| | | </foreach> |
| | | </delete> |
| | | |
| | | <select id="getSysUserByCarId" parameterType="java.lang.String" resultMap="SysUserResult"> |
| | | select * from sys_user su where su.dept_id in ( |
| | | select cast(unnest(array_append(string_to_array(sd.ancestors,','), |
| | | cast(sd.dept_id as text))) as int) from ard_sy_car asy |
| | | inner join sys_dept sd on asy.dept_id = sd.dept_id |
| | | where asy.car_id = #{carId}) |
| | | </select> |
| | | </mapper> |