Compare commits

...

2 Commits

Author SHA1 Message Date
jiangs
3317b01b62 Merge remote-tracking branch 'lis8.0/master' 2025-10-29 09:25:19 +08:00
jiangs
53083200a8 住院报告查询增加字段 2025-10-29 09:25:12 +08:00
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;
}