| | |
| | | <if test="deptname != null and deptname != ''"> |
| | | AND d.deptname LIKE concat('%',#{deptname}, '%') |
| | | </if> |
| | | |
| | | <if test="pids != null"> |
| | | AND a.patid NOT IN |
| | | <foreach collection="pids" item="pid" open="(" separator="," close=")"> |
| | | #{pid} |
| | | </foreach> |
| | | </if> |
| | | AND d.del_flag != 1 |
| | | AND a.del_flag != 1 |
| | | </where> |
| | |
| | | resultMap="PatArchiveResult"> |
| | | |
| | | select |
| | | -- c.tagname as tag, |
| | | -- b.tagid as tagid, |
| | | a.patid, |
| | | d.deptname, |
| | | a.name, |
| | |
| | | a.isupload, |
| | | a.upload_time, |
| | | a.pattype |
| | | -- from pat_archive a,pat_archivetag b ,base_tag c, pat_med_outhosp d |
| | | from pat_archive a, pat_med_outhosp d |
| | | <where> |
| | | a.patid = d.patid |
| | |
| | | <if test="name != null and name != ''">and a.name like concat('%', #{name}, '%')</if> |
| | | <if test="idcardno != null and idcardno != ''">and a.idcardno = #{idcardno}</if> |
| | | <if test="telcode != null and telcode != ''">and a.telcode = #{telcode}</if> |
| | | <!-- <if test="tagIds != null and tagIds != ''">and c.tagid in--> |
| | | <!-- <foreach collection="tagIds" item="tagId" open="(" separator="," close=")">--> |
| | | <!-- #{tagId}--> |
| | | <!-- </foreach>--> |
| | | <!-- </if>--> |
| | | <if test="hospitaldistrictname != null and hospitaldistrictname != ''"> |
| | | AND d.hospitaldistrictname LIKE concat('%',#{hospitaldistrictname}, '%') |
| | | </if> |
| | |
| | | <if test="drname != null and drname != ''"> |
| | | AND d.drname LIKE concat('%',#{drname}, '%') |
| | | </if> |
| | | |
| | | <if test="pids != null"> |
| | | AND a.patid NOT IN |
| | | <foreach collection="pids" item="pid" open="(" separator="," close=")"> |
| | | #{pid} |
| | | </foreach> |
| | | </if> |
| | | AND d.del_flag != 1 |
| | | -- AND b.del_flag != 1 |
| | | -- AND c.del_flag != 1 |
| | | AND a.del_flag != 1 |
| | | </where> |
| | | </select> |
| | |
| | | resultMap="PatArchiveResult"> |
| | | |
| | | select |
| | | -- c.tagname as tag, |
| | | -- b.tagid as tagid, |
| | | a.patid as id, |
| | | a.name, |
| | | a.sex, |
| | |
| | | a.isupload, |
| | | a.upload_time, |
| | | a.pattype |
| | | -- from pat_archive a,pat_archivetag b ,base_tag c, pat_med_physical d |
| | | from pat_archive a, pat_med_physical d |
| | | <where> |
| | | a.patid = d.patid |
| | |
| | | <if test="name != null and name != ''">and a.name like concat('%', #{name}, '%')</if> |
| | | <if test="idcardno != null and idcardno != ''">and a.idcardno = #{idcardno}</if> |
| | | <if test="telcode != null and telcode != ''">and a.telcode = #{telcode}</if> |
| | | <!-- <if test="tagIds != null and tagIds != ''">and c.tagid in--> |
| | | <!-- <foreach collection="tagIds" item="tagId" open="(" separator="," close=")">--> |
| | | <!-- #{tagId}--> |
| | | <!-- </foreach>--> |
| | | <!-- </if>--> |
| | | <if test="hospitaldistrictname != null and hospitaldistrictname != ''"> |
| | | AND d.hospitaldistrictname LIKE concat('%',#{hospitaldistrictname}, '%') |
| | | </if> |
| | |
| | | <if test="drname != null and drname != ''"> |
| | | AND d.drname LIKE concat('%',#{drname}, '%') |
| | | </if> |
| | | |
| | | <if test="pids != null"> |
| | | AND a.patid NOT IN |
| | | <foreach collection="pids" item="pid" open="(" separator="," close=")"> |
| | | #{pid} |
| | | </foreach> |
| | | </if> |
| | | AND d.del_flag != 1 |
| | | -- AND b.del_flag != 1 |
| | | -- AND c.del_flag != 1 |
| | | AND a.del_flag != 1 |
| | | </where> |
| | | |