From 79f9fbd9f999e26af3f0bca534d825eb687e092c Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期三, 25 十二月 2024 08:47:24 +0800 Subject: [PATCH] 20241225 --- ltkj-hosp/src/main/resources/mapper/hosp/TjFlowingWaterMapper.xml | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ltkj-hosp/src/main/resources/mapper/hosp/TjFlowingWaterMapper.xml b/ltkj-hosp/src/main/resources/mapper/hosp/TjFlowingWaterMapper.xml index 3f97287..c2fb406 100644 --- a/ltkj-hosp/src/main/resources/mapper/hosp/TjFlowingWaterMapper.xml +++ b/ltkj-hosp/src/main/resources/mapper/hosp/TjFlowingWaterMapper.xml @@ -22,6 +22,8 @@ <result property="refundTime" column="refund_time"/> <result property="refundPrice" column="refund_price"/> <result property="deleted" column="deleted"/> + <result property="hisWaterId" column="his_water_id"/> + <result property="hisTfWaterId" column="his_tf_water_id"/> </resultMap> <sql id="selectTjFlowingWaterVo"> @@ -41,7 +43,7 @@ refund_person_id, refund_time, refund_price, - deleted + deleted,his_water_id,his_tf_water_id from tj_flowing_water </sql> @@ -75,6 +77,8 @@ <if test="updateBy != null">update_by,</if> <if test="updateTime != null">update_time,</if> <if test="deleted != null">deleted,</if> + <if test="hisWaterId != null">his_water_id,</if> + <if test="hisTfWaterId != null">his_tf_water_id,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="tjSerialNumber != null">#{tj_serial_number},</if> @@ -90,6 +94,8 @@ <if test="updateBy != null">#{updateBy},</if> <if test="updateTime != null">#{updateTime},</if> <if test="deleted != null">#{deleted},</if> + <if test="hisWaterId != null">#{hisWaterId},</if> + <if test="hisTfWaterId != null">#{hisTfWaterId},</if> </trim> </insert> @@ -108,6 +114,8 @@ <if test="updateBy != null">update_by = #{updateBy},</if> <if test="updateTime != null">update_time = #{updateTime},</if> <if test="deleted != null">deleted = #{deleted},</if> + <if test="hisWaterId != null">his_water_id = #{hisWaterId},</if> + <if test="hisTfWaterId != null">his_tf_water_id = #{hisTfWaterId},</if> </trim> where tj_serial_number = #{tj_serial_number} </update> -- Gitblit v1.8.0