Commit 39641231bb22da58d473a3e991c837f7e04f0131

Authored by 王富生
1 parent 9e5481a8

修复sq当前时间格式

urbanops-module-garden/src/main/resources/mapper/maintainplan/MaintainPlanDetailMapper.xml
... ... @@ -50,7 +50,7 @@
50 50 </if>
51 51 <!--状态 1:未完成;2:已完成;3:已失效-->
52 52 <if test="req.finishState == 3">
53   - <![CDATA[and c.end_time < #{req.localDate}]]>
  53 + <![CDATA[and c.end_time < #{req.localDateTime}]]>
54 54 </if>
55 55 <if test="req.finishState == 2">
56 56 and c.finish_state = #{req.finishState}
... ...