11
This commit is contained in:
parent
f2879346f8
commit
dfbfce1964
@ -765,10 +765,10 @@
|
|||||||
where
|
where
|
||||||
del_flag = 0
|
del_flag = 0
|
||||||
<if test="firstDay != null">
|
<if test="firstDay != null">
|
||||||
and create_time >= #{firstDay}
|
and DATE(create_time) >= #{firstDay}
|
||||||
</if>
|
</if>
|
||||||
<if test="firstDay != null">
|
<if test="firstDay != null">
|
||||||
and create_time <= #{now}
|
and DATE(create_time) <= #{now}
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -779,10 +779,10 @@
|
|||||||
where
|
where
|
||||||
del_flag = 0
|
del_flag = 0
|
||||||
<if test="firstDay != null">
|
<if test="firstDay != null">
|
||||||
and sign_time >= #{firstDay}
|
and DATE(sign_time) >= #{firstDay}
|
||||||
</if>
|
</if>
|
||||||
<if test="firstDay != null">
|
<if test="firstDay != null">
|
||||||
and sign_time <= #{now}
|
and DATE(sign_time) <= #{now}
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -799,4 +799,4 @@
|
|||||||
where del_flag = 0
|
where del_flag = 0
|
||||||
and service_status = 'SERVICE_CENTER'
|
and service_status = 'SERVICE_CENTER'
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user