| | |
| | | <if test="user.trainingUnitId!=null and user.trainingUnitId != ''"> |
| | | and str.training_unit_id = #{user.trainingUnitId} |
| | | </if> |
| | | <if test="user.deptName!=null and user.deptName != ''"> |
| | | and bd.dept_name like concat('%', #{user.deptName},'%') |
| | | </if> |
| | | <if test="user.jurisdiction!=null and user.jurisdiction != '' and user.jurisdiction!='1372091709474910209'"> |
| | | and (sj.id = #{user.jurisdiction} or sj.parent_id = #{user.jurisdiction}) |
| | | </if> |
| | |
| | | on |
| | | bd.id = bu.dept_id |
| | | left join |
| | | sys_information si |
| | | on |
| | | si.departmentid = bd.id |
| | | left join |
| | | sys_jurisdiction sj |
| | | on |
| | | sj.id = si.jurisdiction |
| | | sj.id = bu.jurisdiction |
| | | left join |
| | | blade_role br |
| | | on |
| | | br.id = bu.role_id |
| | | where bu.is_deleted = 0 |
| | | <if test="user.tenantId!=null and user.tenantId != ''"> |
| | | and tenant_id = #{user.tenantId} |
| | | </if> |
| | | <if test="user.account!=null and user.account != ''"> |
| | | and account like concat('%', #{user.account},'%') |
| | | </if> |
| | | <if test="user.roleId!=null and user.roleId != ''"> |
| | | and br.role_alias = '公安管理员' |
| | | </if> |
| | | <if test="user.realName!=null and user.realName != ''"> |
| | | and real_name like concat(concat('%', #{user.realName}),'%') |
| | |
| | | and bd.is_deleted = 0 |
| | | and bd.id = #{user.deptId} |
| | | and br.role_alias = '保安' |
| | | and bu.dispatch = 1 |
| | | ) |
| | | </select> |
| | | |