| | |
| | | @RequestParam("per_page", required = false) perPage: Int? |
| | | ) = subtaskService.searchSubTask3(token, updateTime, sceneType, districtCode, startTime, endTime, page, perPage) |
| | | |
| | | @ApiOperation(value = "获取巡查任务统计报告") |
| | | @PostMapping("/subtask/excel") |
| | | fun getExcel( |
| | | @RequestBody config: ExcelConfigVo, |
| | |
| | | @RequestParam("page") page: Int, |
| | | @RequestParam("perPage") perPage: Int |
| | | ) = searchService.searchSubTaskByKeyword(userId, keyword, page, perPage) |
| | | |
| | | @PostMapping("/dailyreport") |
| | | fun getDailyReport( |
| | | @RequestBody config: ExcelConfigVo |
| | | ) = searchService.getDailyReport(config) |
| | | } |