You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
5.4 KiB
XML

<?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.ruoyi.system.mapper.TImageMapper">
<resultMap type="TImage" id="TImageResult">
<result property="id" column="id" />
<result property="thirdId" column="third_id" />
<result property="path" column="path" />
<result property="name" column="name" />
<result property="createTime" column="create_time" />
<result property="identifier" column="identifier" />
</resultMap>
<sql id="selectTImageVo">
select id, third_id, path, name, create_time from t_image
</sql>
<select id="selectTImageList" parameterType="TImage" resultMap="TImageResult">
<include refid="selectTImageVo"/>
<where>
<if test="thirdId != null "> and third_id = #{thirdId}</if>
<if test="path != null and path != ''"> and path = #{path}</if>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
</where>
</select>
<select id="selectTImageById" parameterType="Long" resultMap="TImageResult">
<include refid="selectTImageVo"/>
where id = #{id}
</select>
<insert id="insertTImage" parameterType="TImage" useGeneratedKeys="true" keyProperty="id">
insert into t_image
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="thirdId != null">third_id,</if>
<if test="path != null">path,</if>
<if test="name != null">name,</if>
<if test="createTime != null">create_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="thirdId != null">#{thirdId},</if>
<if test="path != null">#{path},</if>
<if test="name != null">#{name},</if>
<if test="createTime != null">#{createTime},</if>
</trim>
</insert>
<update id="updateTImage" parameterType="TImage">
update t_image
<trim prefix="SET" suffixOverrides=",">
<if test="thirdId != null">third_id = #{thirdId},</if>
<if test="path != null">path = #{path},</if>
<if test="name != null">name = #{name},</if>
<if test="createTime != null">create_time = #{createTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTImageById" parameterType="Long">
delete from t_image where id = #{id}
</delete>
<delete id="deleteTImageByIds" parameterType="String">
delete from t_image where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
<delete id="deleteTImageByThirdId" parameterType="Long">
delete from t_image where third_id = #{id}
</delete>
<select id="queryImagByExport" parameterType="TRecordResultReq" resultMap="TImageResult">
SELECT
ti.id,
ti.third_id,
ti.path,
ti.name,
ti.create_time,
tp.identifier
FROM
t_record tr
LEFT JOIN t_doctor td ON tr.doctor_id = td.id
LEFT JOIN t_patient tp ON tr.patient_id = tp.id
LEFT JOIN t_hospital th ON tr.hospital_id = th.id
LEFT JOIN t_image ti ON tr.id = ti.third_id
where ti.`name` in ('sm_front','sx_front')
<if test="name != null and name != ''"> and tp.name like concat('%', #{name}, '%')</if>
<if test="doctorId != null "> and tr.doctor_id = #{doctorId}</if>
<if test="hospitalId != null "> and tr.hospital_id = #{hospitalId}</if>
<if test="status != null and status != ''"> and tr.status = #{status}</if>
<if test="doctorName != null and doctorName != ''"> and td.name like concat('%', #{doctorName}, '%')</if>
<if test="age !=null and age != ''">
and tp.age between
<foreach item="item" collection="age.split('-')" separator="and">
#{item}
</foreach>
</if>
<if test="sex !=null and sex !=''">and tp.sex = #{sex} </if>
<if test="identifier !=null and identifier != ''">and tp.identifier like concat('%', #{identifier}, '%')</if>
<if test="delFlag != null and delFlag != ''">
and tr.del_flag = #{delFlag}
</if>
<if test="createTime != null and createTime !='' and createTime != 'all'">
and DATE_FORMAT(tp.create_time,'%Y-%m') = #{createTime}
</if>
<if test="createTime == null or createTime ==''">
and to_days(tr.create_time) = to_days(now())
</if>
<if test="startTime != null and startTime != '' and endTime == null "> and tr.create_time &gt;= #{startTime}</if>
<if test="startTime == null and endTime != '' and endTime != null "> and tr.create_time &lt;= #{endTime}</if>
<if test="startTime != null and endTime != null "> and tr.create_time between #{startTime} and #{endTime}</if>
<if test="patientAge != null"> and tp.age = #{patientAge} </if>
<if test="doctorOder !=null and doctorOder !=''" >order by tr.create_time ${doctorOder}</if>
<if test="firstVisitOder!=null and firstVisitOder !=''" >order by tp.create_time ${firstVisitOder}</if>
</select>
</mapper>