|
@@ -403,10 +403,10 @@
|
|
403
|
and shr.org_id = #{orgId}
|
403
|
and shr.org_id = #{orgId}
|
|
404
|
</if>
|
404
|
</if>
|
|
405
|
<if test="searchStartDate !=null">
|
405
|
<if test="searchStartDate !=null">
|
|
406
|
- and shr.check_date >= to_date(#{searchStartDate},'yyyy-mm-dd hh24:mi:ss')
|
|
|
|
|
|
406
|
+ and shr.check_date >= DATE_FORMAT(#{searchStartDate},'%Y-%m-%d %H:%i:%s')
|
|
407
|
</if>
|
407
|
</if>
|
|
408
|
<if test="searchEndDate !=null">
|
408
|
<if test="searchEndDate !=null">
|
|
409
|
- and shr.check_date <= to_date(#{searchEndDate},'yyyy-mm-dd hh24:mi:ss')
|
|
|
|
|
|
409
|
+ and shr.check_date <= DATE_FORMAT(#{searchEndDate},'%Y-%m-%d %H:%i:%s')
|
|
410
|
</if>
|
410
|
</if>
|
|
411
|
<if test="problemExist !=null">
|
411
|
<if test="problemExist !=null">
|
|
412
|
and shr.problem_exist = #{problemExist}
|
412
|
and shr.problem_exist = #{problemExist}
|