|
@@ -253,6 +253,52 @@ public class ConsoleByDeptController {
|
|
|
return RespDTO.onSuc(consoleFacade.homePageLevelStatisticsXY(filterOrderXYPageVO));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 条目缺陷占比科室(分页)-湘雅
|
|
|
+ *
|
|
|
+ * @param filterPageXYVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "缺陷详情(分页)[by:zhaops]",
|
|
|
+ notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
+ "deptName: 科室名称 <br>" +
|
|
|
+ "casesId: 模块id:243=病案首页 <br>" +
|
|
|
+ "casesName: 模块名称 <br>" +
|
|
|
+ "isReject: 单项否决 1-否决,0-非<br>" +
|
|
|
+ "ruleType: 规则类型 0:无,1:空项,2:错误<br>" +
|
|
|
+ "isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
+ @PostMapping("/entryCountGroupXYByEntryPageDept")
|
|
|
+ @SysLogger("entryCountGroupXYByEntryPageDept")
|
|
|
+ public RespDTO<IPage<EntryNumGroupDTO>> entryCountGroupXYByEntryPageDept(@RequestBody @Valid FilterPageXYVO filterPageXYVO) {
|
|
|
+ return RespDTO.onSuc(consoleFacade.entryCountGroupXYByEntryPage(filterPageXYVO));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 条目缺陷质控评科室分页(内页)-湘雅
|
|
|
+ *
|
|
|
+ * @param qcResultShortXYPageVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "条目缺陷质控评分页(内页)[by:zhaops]")
|
|
|
+ @PostMapping("/qcResultShortXYPageByDept")
|
|
|
+ @SysLogger("qcResultShortXYPageByDept")
|
|
|
+ public RespDTO<IPage<QcResultShortDTO>> qcResultShortXYPageByDept(@RequestBody @Valid QcResultShortXYPageVO qcResultShortXYPageVO) {
|
|
|
+ return RespDTO.onSuc(consoleFacade.qcResultShortXYPage(qcResultShortXYPageVO));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 病案首页不合格数病历科室详情(内页)-湘雅
|
|
|
+ * @param qcResultPageVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "病案首页不合格/合格数病历详情(内页)[by:cy]")
|
|
|
+ @PostMapping("/badLevelXYPageByDept")
|
|
|
+ @SysLogger("badLevelXYPageByDept")
|
|
|
+ public RespDTO<IPage<QcResultShortDTO>> badLevelXYPageByDept(@RequestBody @Valid QcResultPageXYVO qcResultPageVO) {
|
|
|
+ return RespDTO.onSuc(consoleFacade.badLevelXYPage(qcResultPageVO));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 病案首页合格/不合格数
|
|
|
*
|