<?xml version="1.0" encoding="UTF-8" ?>
|
<!DOCTYPE mapper
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.smartor.mapper.PatArchiveMapper">
|
|
<resultMap type="com.smartor.domain.PatArchive" id="PatArchiveResult">
|
<result property="id" column="id"/>
|
<result property="name" column="name"/>
|
<result property="sex" column="sex"/>
|
<result property="nation" column="nation"/>
|
<result property="nativePlace" column="native_place"/>
|
<result property="placeOfResidence" column="place_of_residence"/>
|
<result property="birthplace" column="birthplace"/>
|
<result property="idcardno" column="idcardno"/>
|
<result property="birthdate" column="birthdate"/>
|
<result property="age" column="age"/>
|
<result property="sourcefrom" column="sourcefrom"/>
|
<result property="archivetime" column="archivetime"/>
|
<result property="archiveby" column="archiveby"/>
|
<result property="telcode" column="telcode"/>
|
<result property="relativetelcode" column="relativetelcode"/>
|
<result property="idcardtype" column="idcardtype"/>
|
<result property="orgid" column="orgid"/>
|
<result property="openid" column="openid"/>
|
<result property="delFlag" column="del_flag"/>
|
<result property="dept" column="deptname"/>
|
<result property="updateBy" column="update_by"/>
|
<result property="updateTime" column="update_time"/>
|
<result property="createBy" column="create_by"/>
|
<result property="createTime" column="create_time"/>
|
<result property="isupload" column="isupload"/>
|
<result property="uploadTime" column="upload_time"/>
|
<result property="tag" column="tag"/>
|
<result property="pattype" column="pattype"/>
|
<result property="bedNo" column="bedno"/>
|
<result property="inhosptime" column="inhosptime"/>
|
<result property="viptype" column="viptype"/>
|
</resultMap>
|
|
<sql id="selectPatArchiveVo">
|
select id,
|
name,
|
sex,
|
idcardno,
|
birthdate,
|
age,
|
nation,
|
native_place,
|
place_of_residence,
|
birthplace,
|
sourcefrom,
|
archivetime,
|
archiveby,
|
telcode,
|
relativetelcode,
|
idcardtype,
|
orgid,
|
openid,
|
del_flag,
|
update_by,
|
update_time,
|
create_by,
|
create_time,
|
isupload,
|
pattype,
|
viptype,
|
upload_time
|
from pat_archive
|
</sql>
|
|
<select id="selectPatArchiveList" parameterType="com.smartor.domain.PatArchive" resultMap="PatArchiveResult">
|
<include refid="selectPatArchiveVo"/>
|
<where>
|
<if test="name != null and name != ''">and name like concat('%', #{name}, '%')</if>
|
<if test="idcardno != null and idcardno != ''">and idcardno = #{idcardno}</if>
|
<if test="sourcefrom != null ">and sourcefrom = #{sourcefrom}</if>
|
<if test="telcode != null and telcode != ''">and telcode = #{telcode}</if>
|
<if test="orgid != null and orgid != ''">and orgid = #{orgid}</if>
|
<if test="id != null and id != ''">and id = #{id}</if>
|
<if test="isupload != null ">and isupload = #{isupload}</if>
|
<if test="uploadTime != null ">and upload_time = #{uploadTime}</if>
|
<if test="viptype != null ">and viptype = #{viptype}</if>
|
</where>
|
</select>
|
|
|
<select id="patInfoByContion" parameterType="com.smartor.domain.PatArchiveReq" resultMap="PatArchiveResult">
|
select
|
a.id,
|
a.name,
|
a.sex,
|
c.tagname as tag,
|
a.idcardtype,
|
a.idcardno,
|
a.age,
|
a.telcode,
|
a.create_time,
|
a.update_time,
|
a.viptype,
|
a.birthdate
|
from pat_archive a,pat_archivetag b ,base_tag c
|
<where>
|
a.del_flag=0 and
|
a.id = b.patid and b.tagid = c.tagid
|
<if test="name != null and name != ''">and a.name like concat('%', #{name}, '%')</if>
|
<if test="idcardno != null and idcardno != ''">and idcardno = #{idcardno}</if>
|
<if test="telcode != null and telcode != ''">and telcode = #{telcode}</if>
|
<if test="tagIds != null and tagIds != ''">and c.tagid in
|
<foreach collection="tagIds" item="tagId" open="(" separator="," close=")">
|
#{tagId}
|
</foreach>
|
</if>
|
</where>
|
</select>
|
|
<select id="selectPatArchiveByPatid" parameterType="Long" resultMap="PatArchiveResult">
|
<include refid="selectPatArchiveVo"/>
|
where id = #{id} and del_flag=0
|
</select>
|
|
<insert id="insertPatArchive">
|
<!-- insert into pat_archive-->
|
<!-- <trim prefix="(" suffix=")" suffixOverrides=",">-->
|
<!-- name,-->
|
<!-- sex,-->
|
<!-- iccardno-->
|
<!--<!– <if test="birthdate != null">birthdate,</if>–>-->
|
<!--<!– <if test="age != null">age,</if>–>-->
|
<!--<!– <if test="sourcefrom != null">sourcefrom,</if>–>-->
|
<!--<!– <if test="archivetime != null">archivetime,</if>–>-->
|
<!--<!– <if test="archiveby != null">archiveby,</if>–>-->
|
<!--<!– <if test="telcode != null">telcode,</if>–>-->
|
<!--<!– <if test="relativetelcode != null">relativetelcode,</if>–>-->
|
<!--<!– <if test="iccardtype != null">iccardtype,</if>–>-->
|
<!--<!– <if test="orgid != null">orgid,</if>–>-->
|
<!--<!– <if test="openid != null">openid,</if>–>-->
|
<!--<!– <if test="delFlag != null and delFlag != ''">del_flag,</if>–>-->
|
<!--<!– <if test="updateBy != null">update_by,</if>–>-->
|
<!--<!– <if test="updateTime != null">update_time,</if>–>-->
|
<!--<!– <if test="createBy != null">create_by,</if>–>-->
|
<!--<!– <if test="createTime != null">create_time,</if>–>-->
|
<!--<!– <if test="isupload != null">isupload,</if>–>-->
|
<!--<!– <if test="uploadTime != null">upload_time,</if>–>-->
|
<!-- </trim>-->
|
<!-- <trim prefix="values (" suffix=")" suffixOverrides=",">-->
|
<!-- <foreach item="item" index="index" collection="list" separator=",">-->
|
<!-- <if test="name != null">#{item.name},</if>-->
|
<!-- <if test="sex != null">#{item.sex},</if>-->
|
<!-- <if test="iccardno != null">#{item.iccardno},</if>-->
|
<!--<!– <if test="birthdate != null">#{birthdate},</if>–>-->
|
<!--<!– <if test="age != null">#{item.age},</if>–>-->
|
<!--<!– <if test="sourcefrom != null">#{item.sourcefrom},</if>–>-->
|
<!--<!– <if test="archivetime != null">#{item.archivetime},</if>–>-->
|
<!--<!– <if test="archiveby != null">#{item.archiveby},</if>–>-->
|
<!--<!– <if test="telcode != null">#{item.telcode},</if>–>-->
|
<!--<!– <if test="relativetelcode != null">#{item.relativetelcode},</if>–>-->
|
<!--<!– <if test="iccardtype != null">#{item.iccardtype},</if>–>-->
|
<!--<!– <if test="orgid != null">#{item.orgid},</if>–>-->
|
<!--<!– <if test="openid != null">#{item.openid},</if>–>-->
|
<!--<!– <if test="delFlag != null and delFlag != ''">#{item.delFlag},</if>–>-->
|
<!--<!– <if test="updateBy != null">#{item.updateBy},</if>–>-->
|
<!--<!– <if test="updateTime != null">#{item.updateTime},</if>–>-->
|
<!--<!– <if test="createBy != null">#{item.createBy},</if>–>-->
|
<!--<!– <if test="createTime != null">#{item.createTime},</if>–>-->
|
<!--<!– <if test="isupload != null">#{item.isupload},</if>–>-->
|
<!--<!– <if test="uploadTime != null">#{item.uploadTime},</if>–>-->
|
<!-- </foreach>-->
|
<!-- </trim>-->
|
|
insert into
|
pat_archive(name,viptype,sex,idcardno,birthdate,birthplace,place_of_residence,age,sourcefrom,archivetime,archiveby,telcode,relativetelcode,idcardtype,orgid,openid,dduserid,update_by,update_time
|
,create_by,create_time,isupload,upload_time,pattype,place_of_residence,nation,birthplace,native_place) values
|
<foreach item="item" index="index" collection="list" separator=",">
|
(#{item.name},#{item.viptype},#{item.sex},#{item.idcardno},#{item.birthdate},#{item.birthplace},#{item.placeOfResidence},#{item.age},#{item.sourcefrom},#{item.archivetime},#{item.archiveby}
|
,#{item.telcode},#{item.archiveby},#{item.idcardtype},#{item.orgid},#{item.openid},#{item.dduserid},#{item.updateBy},
|
#{item.updateTime},#{item.createBy},#{item.createTime},#{item.isupload},#{item.uploadTime},#{item.pattype},#{item.placeOfResidence},#{item.nation},#{item.birthplace},#{item.nativePlace}
|
)
|
</foreach>
|
</insert>
|
|
<update id="updatePatArchive" parameterType="com.smartor.domain.PatArchive">
|
update pat_archive
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="name != null">name = #{name},</if>
|
<if test="sex != null">sex = #{sex},</if>
|
<if test="idcardno != null">idcardno = #{idcardno},</if>
|
<if test="birthdate != null">birthdate = #{birthdate},</if>
|
<if test="placeOfResidence != null">place_of_residence = #{placeOfResidence},</if>
|
<if test="birthplace != null">birthplace = #{birthplace},</if>
|
<if test="age != null">age = #{age},</if>
|
<if test="sourcefrom != null">sourcefrom = #{sourcefrom},</if>
|
<if test="archivetime != null">archivetime = #{archivetime},</if>
|
<if test="archiveby != null">archiveby = #{archiveby},</if>
|
<if test="telcode != null">telcode = #{telcode},</if>
|
<if test="relativetelcode != null">relativetelcode = #{relativetelcode},</if>
|
<if test="idcardtype != null">idcardtype = #{idcardtype},</if>
|
<if test="orgid != null">orgid = #{orgid},</if>
|
<if test="openid != null">openid = #{openid},</if>
|
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
<if test="createBy != null">create_by = #{createBy},</if>
|
<if test="createTime != null">create_time = #{createTime},</if>
|
<if test="isupload != null">isupload = #{isupload},</if>
|
<if test="uploadTime != null">upload_time = #{uploadTime},</if>
|
<if test="viptype != null">viptype = #{viptype},</if>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deletePatArchiveByPatid" parameterType="Long">
|
delete
|
from pat_archive
|
where id = #{id}
|
</delete>
|
|
<delete id="deletePatArchiveByPatids" parameterType="String">
|
delete from pat_archive where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
|
<select id="selectPatArchiveInfoByAllhosp" parameterType="com.smartor.domain.PatArchiveReq"
|
resultMap="PatArchiveResult">
|
|
SELECT
|
a.id,
|
a.NAME,
|
a.sex,
|
a.nation,
|
a.native_place,
|
a.place_of_residence,
|
a.birthplace,
|
a.idcardno,
|
a.birthdate,
|
a.age,
|
a.sourcefrom,
|
a.archivetime,
|
a.archiveby,
|
a.telcode,
|
a.relativetelcode,
|
a.idcardtype,
|
a.orgid,
|
a.openid,
|
a.del_flag,
|
a.update_by,
|
a.update_time,
|
a.create_by,
|
a.create_time,
|
a.isupload,
|
a.upload_time,
|
a.viptype,
|
a.pattype,
|
b.tagname AS tag,
|
b.tagid AS tagid
|
FROM
|
pat_archive a
|
LEFT JOIN pat_archivetag b ON a.id = b.patid AND b.del_flag = 0
|
<where>
|
a.del_flag = 0
|
<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="pid != null and pid != ''">and a.id = #{pid}</if>
|
<if test="telcode != null and telcode != ''">and a.telcode = #{telcode}</if>
|
<if test="tagIds != null and tagIds != ''">and b.tagid in
|
<foreach collection="tagIds" item="tagId" open="(" separator="," close=")">
|
#{tagId}
|
</foreach>
|
</if>
|
|
</where>
|
</select>
|
|
|
<select id="selectPatArchiveInfoByInhosp" parameterType="com.smartor.domain.PatArchiveReq"
|
resultMap="PatArchiveResult">
|
|
select
|
a.id,
|
a.NAME,
|
d.deptname,
|
a.sex,
|
a.nation,
|
a.native_place,
|
a.place_of_residence,
|
a.birthplace,
|
a.idcardno,
|
a.birthdate,
|
a.age,
|
a.sourcefrom,
|
a.archivetime,
|
a.archiveby,
|
a.telcode,
|
a.relativetelcode,
|
a.idcardtype,
|
a.orgid,
|
a.viptype,
|
a.openid,
|
a.del_flag,
|
a.update_by,
|
a.update_time,
|
a.create_by,
|
a.create_time,
|
a.isupload,
|
a.upload_time,
|
a.pattype,
|
d.bed_no,
|
d.starttime AS inhosptime,
|
t.tagname
|
FROM
|
pat_med_inhosp d
|
JOIN pat_archive a ON a.id = d.patid
|
LEFT JOIN ( SELECT patid, GROUP_CONCAT( tagname ) AS tagname FROM pat_archivetag GROUP BY patid ) t ON t.patid =
|
d.patid
|
<where>
|
<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="pid != null and pid != ''">and a.id = #{id}</if>
|
<if test="telcode != null and telcode != ''">and a.telcode = #{telcode}</if>
|
|
<if test="hospitalname != null and hospitalname != ''">
|
AND d.hospitalname = #{hospitalname}
|
</if>
|
<if test="hospitaldistrictname != null and hospitaldistrictname != ''">
|
AND d.hospitaldistrictname LIKE concat('%',#{hospitaldistrictname}, '%')
|
</if>
|
<if test="leaveicd10code != null and leaveicd10code != ''">
|
AND d.leaveicd10code LIKE concat('%',#{leaveicd10code}, '%')
|
</if>
|
<if test="endtime != null">
|
AND d.endtime = #{endtime}
|
</if>
|
<if test="visitno != null and visitno != ''">
|
AND d.inhospno = #{visitno}
|
</if>
|
<if test="deptname != null and deptname != ''">
|
and d.deptname LIKE concat('%', #{deptname}, '%')
|
</if>
|
<if test="drname != null and drname != ''">
|
AND d.drname LIKE concat('%',#{drname}, '%')
|
</if>
|
<if test="diagname != null and diagname != ''">
|
AND d.diagname LIKE concat('%',#{diagname}, '%')
|
</if>
|
<if test="deptname != null and deptname != ''">
|
AND d.deptname LIKE concat('%',#{deptname}, '%')
|
</if>
|
<if test="pids != null">
|
AND a.id NOT IN
|
<foreach collection="pids" item="pid" open="(" separator="," close=")">
|
#{pid}
|
</foreach>
|
</if>
|
AND d.del_flag != 1
|
AND a.del_flag != 1
|
</where>
|
</select>
|
|
<select id="selectPatArchiveInfoByOuthosp" parameterType="com.smartor.domain.PatArchiveReq"
|
resultMap="PatArchiveResult">
|
|
select
|
a.id,
|
d.deptname,
|
a.name,
|
a.sex,
|
a.nation,
|
a.native_place,
|
a.place_of_residence,
|
a.birthplace,
|
a.idcardno,
|
a.birthdate,
|
a.age,
|
a.viptype,
|
a.sourcefrom,
|
a.archivetime,
|
a.archiveby,
|
a.telcode,
|
a.relativetelcode,
|
a.idcardtype,
|
a.orgid,
|
a.openid,
|
a.del_flag,
|
a.update_by,
|
a.update_time,
|
a.create_by,
|
a.create_time,
|
a.isupload,
|
a.upload_time,
|
a.pattype
|
from pat_med_outhosp d JOIN pat_archive a ON a.id = d.patid
|
LEFT JOIN ( SELECT patid, GROUP_CONCAT( tagname ) AS tagname FROM pat_archivetag GROUP BY patid ) t ON t.patid =
|
d.patid
|
<where>
|
<if test="pid != null and pid != ''">and a.id = #{pid}</if>
|
<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="hospitaldistrictname != null and hospitaldistrictname != ''">
|
AND d.hospitaldistrictname LIKE concat('%',#{hospitaldistrictname}, '%')
|
</if>
|
<if test="diagname != null and diagname != ''">
|
AND d.diagname LIKE concat('%',#{diagname}, '%')
|
</if>
|
<if test="hospitalname != null and hospitalname != ''">
|
AND d.hospitalname = #{hospitalname}
|
</if>
|
<if test="visitno != null and visitno != ''">
|
AND d.outhospno = #{visitno}
|
</if>
|
<if test="deptname != null and deptname != ''">
|
and d.deptname LIKE concat('%', #{deptname}, '%')
|
</if>
|
<if test="drname != null and drname != ''">
|
AND d.drname LIKE concat('%',#{drname}, '%')
|
</if>
|
<if test="pids != null">
|
AND a.id NOT IN
|
<foreach collection="pids" item="pid" open="(" separator="," close=")">
|
#{pid}
|
</foreach>
|
</if>
|
AND d.del_flag != 1
|
AND a.del_flag != 1
|
</where>
|
</select>
|
|
<select id="selectPatArchiveInfoByPhysical" parameterType="com.smartor.domain.PatArchiveReq"
|
resultMap="PatArchiveResult">
|
|
select
|
a.id,
|
a.name,
|
a.sex,
|
d.deptname,
|
a.nation,
|
a.native_place,
|
a.place_of_residence,
|
a.birthplace,
|
a.viptype,
|
a.idcardno,
|
a.birthdate,
|
a.age,
|
a.sourcefrom,
|
a.archivetime,
|
a.archiveby,
|
a.telcode,
|
a.relativetelcode,
|
a.idcardtype,
|
a.orgid,
|
a.openid,
|
a.del_flag,
|
a.update_by,
|
a.update_time,
|
a.create_by,
|
a.create_time,
|
a.isupload,
|
a.upload_time,
|
a.pattype
|
from pat_med_physical d JOIN pat_archive a ON a.id = d.patid
|
LEFT JOIN ( SELECT patid, GROUP_CONCAT( tagname ) AS tagname FROM pat_archivetag GROUP BY patid ) t ON t.patid =
|
d.patid
|
<where>
|
<if test="pid != null and pid != ''">and a.id = #{pid}</if>
|
<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="hospitaldistrictname != null and hospitaldistrictname != ''">
|
AND d.hospitaldistrictname LIKE concat('%',#{hospitaldistrictname}, '%')
|
</if>
|
<if test="diagname != null and diagname != ''">
|
AND d.diagname LIKE concat('%',#{diagname}, '%')
|
</if>
|
<if test="hospitalname != null and hospitalname != ''">
|
AND d.hospitalname = #{hospitalname}
|
</if>
|
|
<if test="visitno != null and visitno != ''">
|
AND d.physno = #{visitno}
|
</if>
|
<if test="deptname != null and deptname != ''">
|
and d.deptname LIKE concat('%', #{deptname}, '%')
|
</if>
|
<if test="drname != null and drname != ''">
|
AND d.drname LIKE concat('%',#{drname}, '%')
|
</if>
|
<if test="pids != null">
|
AND a.id NOT IN
|
<foreach collection="pids" item="pid" open="(" separator="," close=")">
|
#{pid}
|
</foreach>
|
</if>
|
AND d.del_flag != 1
|
AND a.del_flag != 1
|
</where>
|
|
</select>
|
|
</mapper>
|