|
@@ -33,10 +33,10 @@ public class ReportStatisticsController {
|
|
|
@Resource
|
|
|
private ReportService reportService;
|
|
|
|
|
|
- @PostMapping("/query-report-statistics")
|
|
|
+ @GetMapping("/query-report-statistics")
|
|
|
@Operation(summary = "工作报告分页统计")
|
|
|
// @PreAuthorize("@ss.hasPermission('adm:report:get-report-statistics')")
|
|
|
- public CommonResult<PageResult<ReportStatisticRespVO>> getReportStatistics(@Valid @RequestBody ReportStatisticReqDTO reportStatisticReqDTO){
|
|
|
+ public CommonResult<PageResult<ReportStatisticRespVO>> getReportStatistics(@Valid ReportStatisticReqDTO reportStatisticReqDTO){
|
|
|
return success(reportService.getReportStatistics(reportStatisticReqDTO));
|
|
|
}
|
|
|
}
|