| | |
| | | @ApiOperation("查询检验样品合格率统计") |
| | | @GetMapping("/getTestSampleStatistics") |
| | | public Result<?> getTestSampleStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getTestSampleStatistics______________>"+dto); |
| | | return Result.success(service.getTestSampleStatistics(dto)); |
| | | } |
| | | |
| | | @ApiOperation("查询供应商不合格统计次数") |
| | | @GetMapping("/getSupplierNoPassStatistics") |
| | | public Result<?> getSupplierNoPassStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getSupplierNoPassStatistics++++++++++++++++>"+dto); |
| | | return Result.success(service.getSupplierNoPassStatistics(dto)); |
| | | } |
| | | |
| | | @ApiOperation("查询不合格项目统计") |
| | | @GetMapping("/getNoPassProjectStatistics") |
| | | public Result<?> getNoPassProjectStatistics(SelectQualificationRateDto dto){ |
| | | System.out.println("getNoPassProjectStatistics===============>"+dto); |
| | | return Result.success(service.getNoPassProjectStatistics(dto)); |
| | | } |
| | | |
| | | @ApiOperation("获取样品名称") |
| | | @GetMapping("/getSampleOptions") |
| | | public Result<?> getSampleOptions(){ |
| | | return Result.success(service.getSampleOptions()); |
| | | } |
| | | } |