This commit is contained in:
linfso 2024-06-03 11:15:39 +08:00
parent 502e2e7d24
commit acd1016d80

View File

@ -247,9 +247,19 @@
<if test="params.endSignDate != null and params.endSignDate != ''">
and sign_date <![CDATA[ <= ]]> #{params.endScanDate}
</if>
<if test="params.isSubBill != null and params.isSubBill = '1'">
<if test="params.isSubBill != null and params.isSubBill = 1">
</if>
<if test="params.isUploadPic != null and params.isUploadPic = 1">
and pic_url is not null
</if>
<if test="params.isUploadPic != null and params.isUploadPic = 0">
and pic_url is null
</if>
</where>
order by create_time desc
</select>