| | |
| | | and dl.name = #{laboratory} |
| | | </if> |
| | | </select> |
| | | <select id="seldepLimsId" resultType="java.lang.String"> |
| | | select name |
| | | from department_lims |
| | | where id = #{depLimsId} |
| | | </select> |
| | | <select id="getPersonList" resultType="java.util.Map"> |
| | | select |
| | | u.id, |
| | | u.name, |
| | | dl.name as depName |
| | | from |
| | | user u |
| | | left join |
| | | department_lims dl |
| | | on |
| | | FIND_IN_SET(dl.id,u.depart_lims_id) |
| | | where |
| | | dl.name in('通信产品实验室','电力产品实验室','检测办') |
| | | and u.status = 1 |
| | | and u.is_custom = 0 |
| | | <if test="laboratory!='' and laboratory!=null"> |
| | | and (dl.name = #{laboratory} or dl.name='检测办') |
| | | </if> |
| | | </select> |
| | | </mapper> |