住院报告查询增加字段

This commit is contained in:
jiangs 2025-10-29 09:25:12 +08:00
parent b2e3055ae4
commit 53083200a8
3 changed files with 4 additions and 3 deletions

View File

@ -14,9 +14,9 @@
<insert id="add">
insert into lab_reportinstr(
bgdh,yq,xh,yljg
bgdh,yq,xh,yljg,myhs
)values(
#{bgdh},#{yq},#{xh},#{yljg}
#{bgdh},#{yq},#{xh},#{yljg},#{myhs}
)
</insert>

View File

@ -38,7 +38,7 @@
select * from xm_inter
<where>
<if test="yq !=null and yq !=''"> and yq = #{yq}</if>
<if test="tdh !=null and tdh !=''"> and tdh = #{tdh}</if>
<if test="xmid !=null and xmid !=''"> and xmid = #{xmid}</if>
</where>
</select>

View File

@ -37,5 +37,6 @@ public class Web_getReportsList {
private String jymd;
private String st;
private String et;
private Date sqsj;
}