Browse Source

修改筛查查询报错

newMaster
zzc 3 months ago
parent
commit
3430ed4598
  1. 4
      acupuncture-system/src/main/resources/mapper/dao/ScreeningDetailDao.xml

4
acupuncture-system/src/main/resources/mapper/dao/ScreeningDetailDao.xml

@ -90,10 +90,10 @@
<if test="param.tenantId != null"> <if test="param.tenantId != null">
and r.tenant_id = #{param.tenantId} and r.tenant_id = #{param.tenantId}
</if> </if>
<if test="param.startTime != null and param.startTime != ''"> <if test="param.startTime != null">
and r.create_time &gt;= #{param.startTime} and r.create_time &gt;= #{param.startTime}
</if> </if>
<if test="param.endTime != null and param.endTime != ''"> <if test="param.endTime != null">
and r.create_time &lt;= #{param.endTime} and r.create_time &lt;= #{param.endTime}
</if> </if>
<if test="param.startAge != null and param.endAge != ''"> <if test="param.startAge != null and param.endAge != ''">

Loading…
Cancel
Save