Commit bb5db4ef3cf3055500bc164c3ed5b1a56bf27720
1 parent
808d0fbc
测试bug优化
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
| ... | ... | @@ -27,7 +27,7 @@ public interface InspectionPlanInterceptMapper extends BaseMapperX<InspectionPla |
| 27 | 27 | .likeIfPresent(InspectionPlanDO::getRoadName, reqVO.getRoadName()) |
| 28 | 28 | .eqIfPresent(InspectionPlanDO::getLevelId, reqVO.getLevelId()) |
| 29 | 29 | .eqIfPresent(InspectionPlanDO::getFinishState, reqVO.getFinishState()) |
| 30 | - .eq(InspectionPlanDO::getFinishState, reqVO.getFinishState()) | |
| 30 | + .eqIfPresent(InspectionPlanDO::getFinishState, reqVO.getFinishState()) | |
| 31 | 31 | .betweenIfPresent(InspectionPlanDO::getBeginTime, reqVO.getBeginTime()) |
| 32 | 32 | .eq(InspectionPlanDO::getDeleted,0) |
| 33 | 33 | .betweenIfPresent(InspectionPlanDO::getEndTime, reqVO.getEndTime()) | ... | ... |