| | |
| | | this.intakeAmountSv.chIntakeAmountDay(); |
| | | return BaseResponseUtils.buildSuccess(true); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 重新统计取水口月取水量 |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "reStatisticsAllIntakeMonthAmount") |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> reStatisticsAllIntakeMonthAmount() throws Exception{ |
| | | this.intakeAmountSv.deleteAllIntakeAmountMonth(); |
| | | this.intakeAmountSv.statisticsIntakeAmountMonth(); |
| | | return BaseResponseUtils.buildSuccess(true); |
| | | } |
| | | |
| | | /** |
| | | * 重新统计取水口所取水量 |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "reStatisticsAllIntakeYearAmount") |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> reStatisticsAllIntakeYearAmount() throws Exception{ |
| | | this.intakeAmountSv.deleteAllIntakeAmountYear(); |
| | | this.intakeAmountSv.statisticsIntakeAmountYear(); |
| | | return BaseResponseUtils.buildSuccess(true); |
| | | } |
| | | } |