| | |
| | | and bu.role_id = #{user.roleId} |
| | | </if> |
| | | <if test="user.roleAlias!=null and user.roleAlias != ''"> |
| | | and (br.role_alias = '保安' or br.role_alias = '未持证保安') |
| | | and br.role_alias = '保安' |
| | | </if> |
| | | <if test="user.status!=null and user.status != ''"> |
| | | and bu.status = #{user.status} |
| | |
| | | where bu.id = #{user.id} |
| | | </select> |
| | | |
| | | <!--获取派遣信息--> |
| | | <select id="getDispaterInfo" resultType="java.util.HashMap"> |
| | | select bu.*,sdu.jurisdiction from blade_user bu |
| | | left join |
| | | blade |
| | | left join |
| | | sys_dispatcher sd |
| | | on |
| | |
| | | on |
| | | bd.id = si.departmentid |
| | | where |
| | | 1=1 |
| | | and bu.status = 1 |
| | | and bu.is_deleted = 0 |
| | | <if test="deptid!=null and deptid!=''"> |
| | | and bu.dept_id = #{deptid} |
| | | </if> |
| | | <if test="jurisdiction!=null and jurisdiction!=''"> |
| | | and sdu.jurisdiction = #{jurisdiction} |
| | | and si.jurisdiction = #{jurisdiction} |
| | | and dept_category=2 |
| | | </if> |
| | | </select> |