| | |
| | | |
| | | /** |
| | | * 导出监控计划详情实施信息 |
| | | * @param detailsRatifyId 监控计划详情实施id |
| | | * @param qualityMonitorDetailsId 监控计划详情实施id |
| | | */ |
| | | @ValueAuth |
| | | @ApiOperation(value = "导出监控计划详情实施信息") |
| | | @GetMapping("/exportQualityMonitorRatify") |
| | | public void exportQualityMonitorRatify(Integer detailsRatifyId, HttpServletResponse response){ |
| | | qualityMonitorService.exportQualityMonitorRatify(detailsRatifyId, response); |
| | | public void exportQualityMonitorRatify(Integer qualityMonitorDetailsId, HttpServletResponse response){ |
| | | qualityMonitorService.exportQualityMonitorRatify(qualityMonitorDetailsId, response); |
| | | } |
| | | |
| | | /************************************************************ 评价 *******************************************************************/ |
| | |
| | | |
| | | /** |
| | | * 导出监控评价 |
| | | * @param detailsEvaluateId 监控评价id |
| | | * @param qualityMonitorDetailsId 监控评价id |
| | | */ |
| | | @ValueAuth |
| | | @ApiOperation(value = "导出监控评价") |
| | | @GetMapping("/exportQualityMonitorEvaluate") |
| | | public void exportQualityMonitorEvaluate(Integer detailsEvaluateId, HttpServletResponse response){ |
| | | qualityMonitorService.exportQualityMonitorEvaluate(detailsEvaluateId, response); |
| | | public void exportQualityMonitorEvaluate(Integer qualityMonitorDetailsId, HttpServletResponse response){ |
| | | qualityMonitorService.exportQualityMonitorEvaluate(qualityMonitorDetailsId, response); |
| | | } |
| | | |
| | | /** |