| | |
| | | <select id="selectAppUserList" parameterType="SysUser" resultMap="SysUserResult"> |
| | | <include refid="selectUserVo"/> |
| | | where u.del_flag = '0' |
| | | and r.role_name like '%app%' |
| | | 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,',')) )) |
| | |
| | | </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> |