Commit 70d74a2cc9e4a7670ba75c86f64685909c55f1b9
1 parent
0cd3cc14
养护计划明细提交
Showing
1 changed file
with
1 additions
and
3 deletions
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 | 27 | .eqIfPresent(InspectionPlanDetailDO::getDeptId, reqVO.getDeptId()) |
| 28 | 28 | .eqIfPresent(InspectionPlanDetailDO::getRoadId, reqVO.getRoadId()) |
| 29 | 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 | 31 | .eqIfPresent(InspectionPlanDetailDO::getFinishState, reqVO.getFinishState()) |
| 33 | - .betweenIfPresent(InspectionPlanDetailDO::getCreateTime, reqVO.getCreateTime()) | |
| 34 | 32 | .eq(InspectionPlanDetailDO::getDeleted,0) |
| 35 | 33 | .orderByAsc(InspectionPlanDetailDO::getId)); |
| 36 | 34 | } | ... | ... |