| | |
| | | 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 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}),'%') |
| | | </if> |