|
@@ -8,7 +8,7 @@ import com.lantone.common.dto.report.LevelStatisticsTZDTO;
|
|
import com.lantone.common.vo.report.FilterOrderVO;
|
|
import com.lantone.common.vo.report.FilterOrderVO;
|
|
import com.lantone.common.vo.report.FilterVO;
|
|
import com.lantone.common.vo.report.FilterVO;
|
|
|
|
|
|
-import com.lantone.report.facade.MrScoreManagementFacade;
|
|
|
|
|
|
+import com.lantone.report.facade.QcScoreManagementFacade;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -36,9 +36,9 @@ import java.util.Map;
|
|
@RequestMapping("/console")
|
|
@RequestMapping("/console")
|
|
@Api(value = "质控病历分数|等级管理统计相关API", tags = { "质控病历分数|等级管理统计相关API" })
|
|
@Api(value = "质控病历分数|等级管理统计相关API", tags = { "质控病历分数|等级管理统计相关API" })
|
|
@SuppressWarnings("unchecked")
|
|
@SuppressWarnings("unchecked")
|
|
-public class MrScoreManagementController {
|
|
|
|
|
|
+public class QcScoreManagementController {
|
|
@Autowired
|
|
@Autowired
|
|
- private MrScoreManagementFacade mrScoreManagementFacade;
|
|
|
|
|
|
+ private QcScoreManagementFacade qcScoreManagementFacade;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 病历评分等级占比-控制台
|
|
* 病历评分等级占比-控制台
|
|
@@ -49,7 +49,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "病历评分等级占比-控制台[by:zhaops]")
|
|
@ApiOperation(value = "病历评分等级占比-控制台[by:zhaops]")
|
|
@PostMapping("/mrCount")
|
|
@PostMapping("/mrCount")
|
|
public CommonResult<Map<String, Object>> mrCount(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<Map<String, Object>> mrCount(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.mrCount(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.mrCount(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -61,7 +61,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "病历评分等级占比-控制台-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "病历评分等级占比-控制台-运行质控[by:zhaops]")
|
|
@PostMapping("/run/mrCount")
|
|
@PostMapping("/run/mrCount")
|
|
public CommonResult<Map<String, Object>> runMrCount(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<Map<String, Object>> runMrCount(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.mrCount(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.mrCount(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -73,7 +73,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室病历等级占比-控制台[by:zhaops]")
|
|
@ApiOperation(value = "各科室病历等级占比-控制台[by:zhaops]")
|
|
@PostMapping("/qcResultLevelPercent")
|
|
@PostMapping("/qcResultLevelPercent")
|
|
public CommonResult<List<DeptNumDTO>> qcResultLevelPercent(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<List<DeptNumDTO>> qcResultLevelPercent(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.qcResultLevelPercent(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.qcResultLevelPercent(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -85,7 +85,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室病历等级占比-控制台-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "各科室病历等级占比-控制台-运行质控[by:zhaops]")
|
|
@PostMapping("/run/qcResultLevelPercent")
|
|
@PostMapping("/run/qcResultLevelPercent")
|
|
public CommonResult<List<DeptNumDTO>> runQcResultLevelPercent(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<List<DeptNumDTO>> runQcResultLevelPercent(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.qcResultLevelPercent(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.qcResultLevelPercent(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -97,7 +97,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比-报表[by:zhaops]")
|
|
@ApiOperation(value = "各科室缺陷占比-报表[by:zhaops]")
|
|
@PostMapping("/levelStatistics")
|
|
@PostMapping("/levelStatistics")
|
|
public CommonResult<List<LevelStatisticsDTO>> levelStatistics(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public CommonResult<List<LevelStatisticsDTO>> levelStatistics(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.levelStatistics(filterOrderVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.levelStatistics(filterOrderVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -109,7 +109,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比-报表-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "各科室缺陷占比-报表-运行质控[by:zhaops]")
|
|
@PostMapping("/run/levelStatistics")
|
|
@PostMapping("/run/levelStatistics")
|
|
public CommonResult<List<LevelStatisticsDTO>> runLevelStatistics(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public CommonResult<List<LevelStatisticsDTO>> runLevelStatistics(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.levelStatistics(filterOrderVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.levelStatistics(filterOrderVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -121,7 +121,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比-报表导出[by:gaodm]")
|
|
@ApiOperation(value = "各科室缺陷占比-报表导出[by:gaodm]")
|
|
@PostMapping("/levelExport")
|
|
@PostMapping("/levelExport")
|
|
public void levelExport(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public void levelExport(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- mrScoreManagementFacade.levelExport(response, filterOrderVO);
|
|
|
|
|
|
+ qcScoreManagementFacade.levelExport(response, filterOrderVO);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -133,7 +133,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比-报表导出-运行质控[by:gaodm]")
|
|
@ApiOperation(value = "各科室缺陷占比-报表导出-运行质控[by:gaodm]")
|
|
@PostMapping("/run/levelExport")
|
|
@PostMapping("/run/levelExport")
|
|
public void runLevelExport(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public void runLevelExport(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- mrScoreManagementFacade.levelExport(response, filterOrderVO);
|
|
|
|
|
|
+ qcScoreManagementFacade.levelExport(response, filterOrderVO);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -146,7 +146,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表[by:zhaops]")
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表[by:zhaops]")
|
|
@PostMapping("/levelStatisticsByDeptClass")
|
|
@PostMapping("/levelStatisticsByDeptClass")
|
|
public CommonResult<List<LevelStatisticsTZDTO>> levelStatisticsByDeptClass(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public CommonResult<List<LevelStatisticsTZDTO>> levelStatisticsByDeptClass(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.levelStatisticsByDeptClass_TZ(filterOrderVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.levelStatisticsByDeptClass_TZ(filterOrderVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -158,7 +158,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表-运行质控[by:zhaops]")
|
|
@PostMapping("/run/levelStatisticsByDeptClass")
|
|
@PostMapping("/run/levelStatisticsByDeptClass")
|
|
public CommonResult<List<LevelStatisticsTZDTO>> runLevelStatisticsByDeptClass(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public CommonResult<List<LevelStatisticsTZDTO>> runLevelStatisticsByDeptClass(@RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.levelStatisticsByDeptClass_TZ(filterOrderVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.levelStatisticsByDeptClass_TZ(filterOrderVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -170,7 +170,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表导出[by:gaodm]")
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表导出[by:gaodm]")
|
|
@PostMapping("/levelExport_TZ")
|
|
@PostMapping("/levelExport_TZ")
|
|
public void levelExport_TZ(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public void levelExport_TZ(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- mrScoreManagementFacade.levelExport_TZ(response, filterOrderVO);
|
|
|
|
|
|
+ qcScoreManagementFacade.levelExport_TZ(response, filterOrderVO);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -182,7 +182,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表导出-运行质控[by:gaodm]")
|
|
@ApiOperation(value = "各科室缺陷占比(台州)-报表导出-运行质控[by:gaodm]")
|
|
@PostMapping("/run/levelExport_TZ")
|
|
@PostMapping("/run/levelExport_TZ")
|
|
public void runLevelExport_TZ(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
public void runLevelExport_TZ(HttpServletResponse response, @RequestBody @Valid FilterOrderVO filterOrderVO) {
|
|
- mrScoreManagementFacade.levelExport_TZ(response, filterOrderVO);
|
|
|
|
|
|
+ qcScoreManagementFacade.levelExport_TZ(response, filterOrderVO);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -194,7 +194,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室质控平均分柱状图-控制台[by:zhaops]")
|
|
@ApiOperation(value = "各科室质控平均分柱状图-控制台[by:zhaops]")
|
|
@PostMapping("/getAverageScore")
|
|
@PostMapping("/getAverageScore")
|
|
public CommonResult<Map<String, Object>> getAverageScore(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<Map<String, Object>> getAverageScore(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.getAverageScore(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.getAverageScore(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -206,7 +206,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室质控平均分柱状图-控制台-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "各科室质控平均分柱状图-控制台-运行质控[by:zhaops]")
|
|
@PostMapping("/run/getAverageScore")
|
|
@PostMapping("/run/getAverageScore")
|
|
public CommonResult<Map<String, Object>> runGetAverageScore(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<Map<String, Object>> runGetAverageScore(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.getAverageScore(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.getAverageScore(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -218,7 +218,7 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室质控平均分柱状图(台州)-控制台[by:zhaops]")
|
|
@ApiOperation(value = "各科室质控平均分柱状图(台州)-控制台[by:zhaops]")
|
|
@PostMapping("/getAverageScoreByDeptClass")
|
|
@PostMapping("/getAverageScoreByDeptClass")
|
|
public CommonResult<List<AverageStatisticsDTO>> getAverageScoreByDeptClass(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<List<AverageStatisticsDTO>> getAverageScoreByDeptClass(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.getAverageScoreByDeptClass(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.getAverageScoreByDeptClass(filterVO));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -230,6 +230,6 @@ public class MrScoreManagementController {
|
|
@ApiOperation(value = "各科室质控平均分柱状图(台州)-控制台-运行质控[by:zhaops]")
|
|
@ApiOperation(value = "各科室质控平均分柱状图(台州)-控制台-运行质控[by:zhaops]")
|
|
@PostMapping("/run/getAverageScoreByDeptClass")
|
|
@PostMapping("/run/getAverageScoreByDeptClass")
|
|
public CommonResult<List<AverageStatisticsDTO>> runGetAverageScoreByDeptClass(@RequestBody @Valid FilterVO filterVO) {
|
|
public CommonResult<List<AverageStatisticsDTO>> runGetAverageScoreByDeptClass(@RequestBody @Valid FilterVO filterVO) {
|
|
- return CommonResult.success(mrScoreManagementFacade.getAverageScoreByDeptClass(filterVO));
|
|
|
|
|
|
+ return CommonResult.success(qcScoreManagementFacade.getAverageScoreByDeptClass(filterVO));
|
|
}
|
|
}
|
|
}
|
|
}
|