|
@@ -1,9 +1,12 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
+import com.diagbot.dto.DiagnoseDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.StandConvertCrfBatchDTO;
|
|
|
import com.diagbot.dto.StandConvertCrfDTO;
|
|
|
+import com.diagbot.facade.KlDiagnoseFacade;
|
|
|
import com.diagbot.facade.TestFacade;
|
|
|
+import com.diagbot.vo.DiagnoseVO;
|
|
|
import com.diagbot.vo.StandConvertCrfVO;
|
|
|
import com.diagbot.vo.TestAllVO;
|
|
|
import com.diagbot.vo.TestLineVO;
|
|
@@ -34,6 +37,8 @@ public class TestController {
|
|
|
|
|
|
@Autowired
|
|
|
private TestFacade testFacade;
|
|
|
+ @Autowired
|
|
|
+ private KlDiagnoseFacade klDiagnoseFacade;
|
|
|
|
|
|
@ApiOperation(value = "开单合理性测试API[zhoutg]",
|
|
|
notes = "idNum:指定行测试<br>" +
|
|
@@ -165,5 +170,11 @@ public class TestController {
|
|
|
public RespDTO<List<Map<String, Object>>> importBill(@RequestParam("file") MultipartFile file, TestLineVO testLineVO) {
|
|
|
return RespDTO.onSuc(testFacade.importBill(file, testLineVO));
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取确诊、拟诊、警惕的疾病[gaodm]", notes = "")
|
|
|
+ @PostMapping("/getDiagnoseByIds")
|
|
|
+ public RespDTO<List<DiagnoseDTO>> getDiagnoseByIds(@RequestBody DiagnoseVO diagnoseVO) {
|
|
|
+ return RespDTO.onSuc(klDiagnoseFacade.getDiagnoseByIds(diagnoseVO));
|
|
|
+ }
|
|
|
}
|
|
|
|