|
@@ -1,8 +1,8 @@
|
|
|
package com.qmth.sop.server.api;
|
|
|
|
|
|
import com.qmth.boot.api.constant.ApiConstant;
|
|
|
-import com.qmth.sop.business.bean.report.FlowMsgReferReportBean;
|
|
|
-import com.qmth.sop.business.service.FlowMsgReferReportService;
|
|
|
+import com.qmth.sop.business.bean.report.QualityAnalyseReportBean;
|
|
|
+import com.qmth.sop.business.service.QualityAnalyseReportService;
|
|
|
import com.qmth.sop.common.contant.SystemConstant;
|
|
|
import com.qmth.sop.common.util.Result;
|
|
|
import com.qmth.sop.common.util.ResultUtil;
|
|
@@ -20,25 +20,25 @@ import javax.annotation.Resource;
|
|
|
public class QualityAnalyseReportController {
|
|
|
|
|
|
@Resource
|
|
|
- FlowMsgReferReportService flowMsgReferReportService;
|
|
|
+ QualityAnalyseReportService qualityAnalyseReportService;
|
|
|
|
|
|
@ApiOperation(value = "大区质量问题统计")
|
|
|
@RequestMapping(value = "/area_manager/report", method = RequestMethod.POST)
|
|
|
- @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = FlowMsgReferReportBean.class) })
|
|
|
+ @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = QualityAnalyseReportBean.class) })
|
|
|
public Result areaManagerReport(@ApiParam(value = "服务单元id", required = true) @RequestParam Long serviceId) {
|
|
|
return ResultUtil.ok();
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "人力商质量问题统计")
|
|
|
@RequestMapping(value = "/human_supplier/report", method = RequestMethod.POST)
|
|
|
- @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = FlowMsgReferReportBean.class) })
|
|
|
+ @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = QualityAnalyseReportBean.class) })
|
|
|
public Result humanSupplierReport(@ApiParam(value = "服务单元id", required = true) @RequestParam Long serviceId) {
|
|
|
return ResultUtil.ok();
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "质量问题原因分类")
|
|
|
@RequestMapping(value = "/type/report", method = RequestMethod.POST)
|
|
|
- @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = FlowMsgReferReportBean.class) })
|
|
|
+ @ApiResponses({ @ApiResponse(code = 200, message = "质量监控分析报表", response = QualityAnalyseReportBean.class) })
|
|
|
public Result typeReport(@ApiParam(value = "服务单元id", required = true) @RequestParam Long serviceId) {
|
|
|
return ResultUtil.ok();
|
|
|
}
|