pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/stClient/StClientCtrl.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/stClient/StClientCtrl.java
@@ -20,7 +20,6 @@ * @Date: 2024/12/30 15:22 * @Description */ @Slf4j @RestController @RequestMapping(path="stClient") @@ -34,7 +33,6 @@ this.sv = sv ; } /** * 查询指定年月农户各日用水量 * @param qo @@ -47,11 +45,9 @@ if(yearMonth == null || yearMonth.trim().equals("")) { return BaseResponseUtils.buildErrorMsg("查询条件年月不能为空"); } int[] ymd = DateTime.yyyy_MM_ymdGroup(yearMonth) ; qo.year = ymd[0] ; qo.month = ymd[1] ; return BaseResponseUtils.buildSuccess(this.sv.selectStClientAmountDay(qo)); } }