| | |
| | | @GetMapping("/getTestSampleStatistics") |
| | | @AuthHandler |
| | | public Result<?> getTestSampleStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getTestSampleStatistics______________>"+dto); |
| | | return Result.success(service.getTestSampleStatistics(dto)); |
| | | } |
| | | |
| | |
| | | @GetMapping("/getSupplierNoPassStatistics") |
| | | @AuthHandler |
| | | public Result<?> getSupplierNoPassStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getSupplierNoPassStatistics++++++++++++++++>"+dto); |
| | | return Result.success(service.getSupplierNoPassStatistics(dto)); |
| | | } |
| | | |
| | |
| | | @GetMapping("/getNoPassProjectStatistics") |
| | | @AuthHandler |
| | | public Result<?> getNoPassProjectStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getNoPassProjectStatistics===============>"+dto); |
| | | return Result.success(service.getNoPassProjectStatistics(dto)); |
| | | } |
| | | |