From 4884f2bc65c73ce5c25f8efee0d1f2a27663a57e Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期二, 02 四月 2024 17:16:27 +0800 Subject: [PATCH] zjh 2024/04/02-1 --- ltkj-hosp/src/main/resources/mapper/hosp/TjReportMapper.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/ltkj-hosp/src/main/resources/mapper/hosp/TjReportMapper.xml b/ltkj-hosp/src/main/resources/mapper/hosp/TjReportMapper.xml index 180514a..0c18083 100644 --- a/ltkj-hosp/src/main/resources/mapper/hosp/TjReportMapper.xml +++ b/ltkj-hosp/src/main/resources/mapper/hosp/TjReportMapper.xml @@ -9,6 +9,7 @@ <result property="report" column="report"/> <result property="tjNumber" column="tj_number"/> <result property="path" column="path"/> + <result property="print" column="print"/> </resultMap> <sql id="selectTjReportVo"> @@ -35,11 +36,13 @@ <if test="report != null">report,</if> <if test="tjNumber != null">tj_number,</if> <if test="path != null">path,</if> + <if test="print != null">print,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="report != null">#{report},</if> <if test="tjNumber != null">#{tjNumber},</if> <if test="path != null">#{path},</if> + <if test="print != null">#{print},</if> </trim> </insert> @@ -49,6 +52,7 @@ <if test="report != null">report = #{report},</if> <if test="tjNumber != null">tj_number = #{tjNumber},</if> <if test="path != null">path = #{path},</if> + <if test="print != null">print = #{print},</if> </trim> where re_id = #{reId} </update> @@ -65,4 +69,4 @@ #{reId} </foreach> </delete> -</mapper> \ No newline at end of file +</mapper> -- Gitblit v1.8.0