|
@@ -7,11 +7,13 @@ import com.diagbot.dto.DeptEntryNumDTO;
|
|
import com.diagbot.dto.DeptNumDTO;
|
|
import com.diagbot.dto.DeptNumDTO;
|
|
import com.diagbot.dto.HomePageNumDTO;
|
|
import com.diagbot.dto.HomePageNumDTO;
|
|
import com.diagbot.dto.LevelStatisticsDTO;
|
|
import com.diagbot.dto.LevelStatisticsDTO;
|
|
|
|
+import com.diagbot.dto.QcResultShortDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.facade.ConsoleByDeptFacade;
|
|
import com.diagbot.facade.ConsoleByDeptFacade;
|
|
import com.diagbot.vo.FilterOrderByDeptVO;
|
|
import com.diagbot.vo.FilterOrderByDeptVO;
|
|
import com.diagbot.vo.FilterPageByDeptVO;
|
|
import com.diagbot.vo.FilterPageByDeptVO;
|
|
import com.diagbot.vo.FilterVO;
|
|
import com.diagbot.vo.FilterVO;
|
|
|
|
+import com.diagbot.vo.QcResultShortPageVO;
|
|
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;
|
|
@@ -121,7 +123,7 @@ public class ConsoleByDeptController {
|
|
"name: 缺陷名称<br>" +
|
|
"name: 缺陷名称<br>" +
|
|
"deptName: 科室名称(必填)<br>" +
|
|
"deptName: 科室名称(必填)<br>" +
|
|
"casesId: 模块id:243=病案首页 <br>" +
|
|
"casesId: 模块id:243=病案首页 <br>" +
|
|
- "casesName: 模块名称<br>"+
|
|
|
|
|
|
+ "casesName: 模块名称<br>" +
|
|
"isReject: 单项否决 1-否决,0-非<br>" +
|
|
"isReject: 单项否决 1-否决,0-非<br>" +
|
|
"ruleType: 规则类型 0:无,1:空项,2:错误<br>")
|
|
"ruleType: 规则类型 0:无,1:空项,2:错误<br>")
|
|
@PostMapping("/entryCountGroupByEntryAndDeptPage")
|
|
@PostMapping("/entryCountGroupByEntryAndDeptPage")
|
|
@@ -201,5 +203,25 @@ public class ConsoleByDeptController {
|
|
return RespDTO.onSuc(consoleByDeptFacade.homePageLevelStatisticsByDept(filterOrderByDeptVO));
|
|
return RespDTO.onSuc(consoleByDeptFacade.homePageLevelStatisticsByDept(filterOrderByDeptVO));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 条目缺陷质控评分页-科室(内页)
|
|
|
|
+ *
|
|
|
|
+ * @param qcResultShortPageVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @ApiOperation(value = "条目缺陷质控评分页-科室(内页)[by:zhaops]",
|
|
|
|
+ notes = "behospitalCode: 病历号)<br>" +
|
|
|
|
+ "patName: 病人姓名 <br>" +
|
|
|
|
+ "casesEntryName: 条目名称 <br>" +
|
|
|
|
+ "behDeptName:科室名称 <br>" +
|
|
|
|
+ "doctorName:主治医生名称 <br>" +
|
|
|
|
+ "level: 病历等级 <br>" +
|
|
|
|
+ "startDate: 起始时间 <br>" +
|
|
|
|
+ "endDate: 截止时间 <br>")
|
|
|
|
+ @PostMapping("/qcResultShortByDeptPage")
|
|
|
|
+ @SysLogger("qcResultShortByDeptPage")
|
|
|
|
+ public RespDTO<IPage<QcResultShortDTO>> qcResultShortByDeptPage(@RequestBody @Valid QcResultShortPageVO qcResultShortPageVO) {
|
|
|
|
+ return RespDTO.onSuc(consoleByDeptFacade.qcResultShortByDeptPage(qcResultShortPageVO));
|
|
|
|
+ }
|
|
//endregion -----------------------内页接口结束------------------------------
|
|
//endregion -----------------------内页接口结束------------------------------
|
|
}
|
|
}
|