修复时间错乱

This commit is contained in:
huangdeliang 2021-05-07 17:45:15 +08:00
parent bb88894068
commit 6b784c3f1f

View File

@ -8,6 +8,7 @@
<result property="id" column="id"/> <result property="id" column="id"/>
<result property="orderId" column="order_id"/> <result property="orderId" column="order_id"/>
<result property="cusId" column="cus_id"/> <result property="cusId" column="cus_id"/>
<result property="outId" column="out_id"/>
<result property="pauseStartDate" column="pause_start_date"/> <result property="pauseStartDate" column="pause_start_date"/>
<result property="pauseEndDate" column="pause_end_date"/> <result property="pauseEndDate" column="pause_end_date"/>
<result property="reason" column="reason"/> <result property="reason" column="reason"/>
@ -36,6 +37,7 @@
where sop.del_flag = 0 where sop.del_flag = 0
<if test="orderId != null ">and sop.order_id = #{orderId}</if> <if test="orderId != null ">and sop.order_id = #{orderId}</if>
<if test="cusId != null ">and sop.cus_id = #{cusId}</if> <if test="cusId != null ">and sop.cus_id = #{cusId}</if>
<if test="outId != null ">and sop.out_id = #{outId}</if>
<if test="pauseStartDate != null ">and sop.pause_start_date = #{pauseStartDate}</if> <if test="pauseStartDate != null ">and sop.pause_start_date = #{pauseStartDate}</if>
<if test="pauseEndDate != null ">and sop.pause_end_date = #{pauseEndDate}</if> <if test="pauseEndDate != null ">and sop.pause_end_date = #{pauseEndDate}</if>
<if test="reason != null and reason != ''">and sop.reason = #{reason}</if> <if test="reason != null and reason != ''">and sop.reason = #{reason}</if>