| | |
| | | |
| | | @GetMapping("getAuditCap") |
| | | @ApiOperation("查询审计容量数") |
| | | public Response getAuditCap(@RequestParam int categoryId){ |
| | | public Response getAuditCap(@RequestParam int categoryId) { |
| | | return service.getListByCategoryId(categoryId); |
| | | } |
| | | |
| | | @PostMapping("updateAuditCap") |
| | | @ApiOperation("更新审计容量数据") |
| | | public Response updateAuditCap(@RequestBody PageParam2 pageParam2){ |
| | | public Response updateAuditCap(@RequestBody PageParam2 pageParam2) { |
| | | return service.updateAudiCap(pageParam2); |
| | | } |
| | | |
| | | @GetMapping("updateHisTime") |
| | | @ApiOperation("更新放电优化时间") |
| | | public Response updateHisTime(@RequestParam int id, @RequestParam int status) { |
| | | return service.updateHisTime(id, status); |
| | | } |
| | | |
| | | } |