Commit bdf5ac116ca34aee8f655aac177b8d85a6e72a3b
1 parent
2fcead10
优化时间查询问题
Showing
1 changed file
with
1 additions
and
1 deletions
urbanops-module-garden/src/main/java/com/zteits/urbanops/module/garden/dal/mysql/inspectionplan/InspectionPlanInterceptMapper.java
| ... | ... | @@ -26,7 +26,7 @@ public interface InspectionPlanInterceptMapper extends BaseMapperX<InspectionPla |
| 26 | 26 | .eqIfPresent(InspectionPlanDO::getCompanyId, reqVO.getCompanyId()) |
| 27 | 27 | .likeIfPresent(InspectionPlanDO::getRoadName, reqVO.getRoadName()) |
| 28 | 28 | .eqIfPresent(InspectionPlanDO::getLevelId, reqVO.getLevelId()) |
| 29 | - .eqIfPresent(InspectionPlanDO::getFinishState, reqVO.getFinishState()) | |
| 29 | + .eqIfPresent(InspectionPlanDO::getCycleId, reqVO.getCycleId()) | |
| 30 | 30 | .eqIfPresent(InspectionPlanDO::getFinishState, reqVO.getFinishState()) |
| 31 | 31 | .betweenIfPresent(InspectionPlanDO::getBeginTime, reqVO.getBeginTime()) |
| 32 | 32 | .betweenIfPresent(InspectionPlanDO::getEndTime, reqVO.getEndTime()) | ... | ... |