This commit is contained in:
zhuangyuanke 2024-08-14 08:20:16 +08:00
parent f2879346f8
commit dfbfce1964

View File

@ -765,10 +765,10 @@
where
del_flag = 0
<if test="firstDay != null">
and create_time >= #{firstDay}
and DATE(create_time) >= #{firstDay}
</if>
<if test="firstDay != null">
and create_time &lt;= #{now}
and DATE(create_time) &lt;= #{now}
</if>
</select>
@ -779,10 +779,10 @@
where
del_flag = 0
<if test="firstDay != null">
and sign_time >= #{firstDay}
and DATE(sign_time) >= #{firstDay}
</if>
<if test="firstDay != null">
and sign_time &lt;= #{now}
and DATE(sign_time) &lt;= #{now}
</if>
</select>