Commit 70d74a2cc9e4a7670ba75c86f64685909c55f1b9

Authored by 王富生
1 parent 0cd3cc14

养护计划明细提交

urbanops-module-garden/src/main/java/com/zteits/urbanops/module/garden/dal/mysql/inspectionplan/InspectionPlanDetailMapper.java
@@ -27,10 +27,8 @@ public interface InspectionPlanDetailMapper extends BaseMapperX<InspectionPlanDe @@ -27,10 +27,8 @@ public interface InspectionPlanDetailMapper extends BaseMapperX<InspectionPlanDe
27 .eqIfPresent(InspectionPlanDetailDO::getDeptId, reqVO.getDeptId()) 27 .eqIfPresent(InspectionPlanDetailDO::getDeptId, reqVO.getDeptId())
28 .eqIfPresent(InspectionPlanDetailDO::getRoadId, reqVO.getRoadId()) 28 .eqIfPresent(InspectionPlanDetailDO::getRoadId, reqVO.getRoadId())
29 .eqIfPresent(InspectionPlanDetailDO::getSortNum, reqVO.getSortNum()) 29 .eqIfPresent(InspectionPlanDetailDO::getSortNum, reqVO.getSortNum())
30 - .betweenIfPresent(InspectionPlanDetailDO::getBeginTime, reqVO.getBeginTime())  
31 - .betweenIfPresent(InspectionPlanDetailDO::getEndTime, reqVO.getEndTime()) 30 + .betweenIfPresent(InspectionPlanDetailDO::getCreateTime, reqVO.getBeginTime(), reqVO.getEndTime())
32 .eqIfPresent(InspectionPlanDetailDO::getFinishState, reqVO.getFinishState()) 31 .eqIfPresent(InspectionPlanDetailDO::getFinishState, reqVO.getFinishState())
33 - .betweenIfPresent(InspectionPlanDetailDO::getCreateTime, reqVO.getCreateTime())  
34 .eq(InspectionPlanDetailDO::getDeleted,0) 32 .eq(InspectionPlanDetailDO::getDeleted,0)
35 .orderByAsc(InspectionPlanDetailDO::getId)); 33 .orderByAsc(InspectionPlanDetailDO::getId));
36 } 34 }