| | |
| | | <result property="cameraPriority" column="camera_priority"/> |
| | | <result property="rongCloudToken" column="rong_cloud_token"/> |
| | | <result property="appUserType" column="app_user_type"/> |
| | | <result property="appOnlineState" column="app_online_state"/> |
| | | <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.camera_priority, |
| | | u.rong_cloud_token, |
| | | u.app_user_type, |
| | | u.app_online_state, |
| | | u.remark, |
| | | d.dept_id, |
| | | d.parent_id, |
| | |
| | | AND u.create_time <= to_timestamp(#{params.endTime},'yyyy-MM-DD') |
| | | </if> |
| | | <if test="appUserType!=null and appUserType!=''"> AND u.app_user_type = #{appUserType}</if> |
| | | <if test="deptId != null ">and (d.dept_id = #{deptId} OR d.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> |
| | |
| | | <if test="cameraPriority != null">camera_priority = #{cameraPriority},</if> |
| | | <if test="rongCloudToken != null">rong_cloud_token = #{rongCloudToken},</if> |
| | | <if test="appUserType != null">app_user_type = #{appUserType},</if> |
| | | <if test="appOnlineState != null">app_online_state = #{appOnlineState},</if> |
| | | update_time = now() |
| | | </set> |
| | | where user_id = #{userId} |
| | |
| | | inner join sys_dept sd on asy.dept_id = sd.dept_id |
| | | where asy.car_id = #{carId}) |
| | | </select> |
| | | |
| | | <select id="userByPlanId" parameterType="String" resultMap="SysUserResult"> |
| | | select user_id,nick_name from sys_user where user_id in (select app_user_id from ard_app_patroluser where patrolplan_id = #{id}) |
| | | </select> |
| | | |
| | | <select id="getOnlineCommander" parameterType="String" resultMap="SysUserResult"> |
| | | select distinct su0.* from sys_user su |
| | | inner join sys_user su0 on su.dept_id = su0.dept_id |
| | | inner join sys_user_role aur on su0.user_id = aur.user_id |
| | | inner join sys_role sr on aur.role_id = sr.role_id |
| | | where su.user_id = #{usersId} and su0.user_id != #{usersId} |
| | | and sr.role_key = 'appLeader' and su0.app_online_state = '1' |
| | | </select> |
| | | |
| | | <select id="getOnlinePC" resultMap="SysUserResult"> |
| | | select distinct su0.* from sys_user su |
| | | inner join sys_user su0 on su.dept_id = su0.dept_id |
| | | inner join sys_user_role aur on su0.user_id = aur.user_id |
| | | inner join sys_role sr on aur.role_id = sr.role_id |
| | | where su.user_id = #{usersId} and su0.user_id != #{usersId} |
| | | and sr.role_key != 'appLeader' and sr.role_key != 'appUser' |
| | | and su0.user_id in |
| | | <foreach collection="onLinePCIdList" item="userId" open="(" close=")" separator=","> |
| | | #{userId} |
| | | </foreach> |
| | | </select> |
| | | </mapper> |