From 62dbd8169d8cad03e7a06f9b53b0a1928caf732f Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期四, 06 三月 2025 18:13:45 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml b/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml index c114008..1282926 100644 --- a/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml @@ -59,11 +59,13 @@ <result property="guid" column="guid"/> <result property="operator" column="operator"/> <result property="operatorId" column="operator_id"/> + <result property="remark" column="remark"/> </resultMap> <sql id="selectPatMedInhospVo"> select inhospid, patname, + remark, guid, operator, operator_id, @@ -122,6 +124,7 @@ a.sex, b.guid, b.operator, + b.remark, b.operator_id, b.inhospid, b.nurse_id, @@ -253,6 +256,7 @@ b.patname, b.operator_id, b.operator, + b.remark, b.out_way_id, b.out_way_name, b.nurse_id, @@ -403,6 +407,7 @@ <if test="operator != null ">operator,</if> <if test="operatorId != null ">operator_id,</if> <if test="inhospno != null ">inhospno,</if> + <if test="remark != null ">remark,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="serialnum != null">#{serialnum},</if> @@ -455,6 +460,7 @@ <if test="operator != null ">#{operator},</if> <if test="operatorId != null ">#{operatorId},</if> <if test="inhospno != null ">#{inhospno},</if> + <if test="remark != null ">#{remark},</if> </trim> </insert> @@ -510,6 +516,7 @@ <if test="guid != null ">guid = #{guid},</if> <if test="operator != null ">operator = #{operator},</if> <if test="operatorId != null ">operator_id = #{operatorId},</if> + <if test="remark != null ">remark = #{remark},</if> </trim> where inhospid = #{inhospid} </update> -- Gitblit v1.9.3