| | |
| | | <if test="user.useName!=null and user.useName!='' and user.useName=='examinationMx'"> |
| | | order by bu.examination_mx ${user.sort} |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="selectPeo" resultType="java.util.HashMap"> |
| | | select |
| | | bu.*, |
| | | ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING( bu.cardid,7,4),0) age, |
| | | bd.dept_name as deptName |
| | | from |
| | | blade_user bu |
| | | left join |
| | | blade_dept bd |
| | | on |
| | | bu.dept_id = bd.id |
| | | left join |
| | | blade_role br |
| | | on |
| | | br.id = bu.role_id |
| | | left join |
| | | sys_information si |
| | | on |
| | | si.departmentid = bd.id |
| | | left join |
| | | sys_jurisdiction sj |
| | | on |
| | | sj.id = si.jurisdiction |
| | | where |
| | | bu.is_deleted = 0 |
| | | and |
| | | br.role_alias = "安保人员" |
| | | and |
| | | bu.status = 1 |
| | | and bd.parent_id!=1425365577303621633 |
| | | and bd.id != 1425365577303621633 |
| | | and bd.id != 1432625856013971457 |
| | | <if test="user.deptId!=null and user.deptId!=''"> |
| | | and bd.id in |
| | | ( |
| | | select id from blade_dept where id = #{user.deptId} |
| | | union |
| | | SELECT |
| | | id |
| | | FROM |
| | | ( |
| | | SELECT |
| | | t1.id,t1.parent_id,t1.dept_name, |
| | | IF |
| | | ( find_in_set( parent_id, @pids ) > 0, @pids := concat( @pids, ',', id ), 0 ) AS ischild |
| | | FROM |
| | | ( SELECT id, parent_id,dept_name FROM blade_dept t ORDER BY parent_id, id ) t1, |
| | | ( SELECT @pids := #{user.deptId} ) t2 |
| | | ) t3 |
| | | WHERE |
| | | ischild != 0 |
| | | ) |
| | | </if> |
| | | <if test="user.type!=null"> |
| | | and bu.equipment_code is not null |
| | | </if> |
| | | |
| | | </select> |
| | | </mapper> |