|
@@ -52,6 +52,17 @@ public class ConceptInfoController {
|
|
|
return RespDTO.onSuc(data);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "医学知识(静态知识)检索[zhaops]",
|
|
|
+ notes = "types: 类型(多选):0-全部、1-诊断、2-药品、3-检验、5-检查、6-手术和操作、8-量表、9-护理、10-政策法规 <br>" +
|
|
|
+ "inputStr: 检索内容<br>")
|
|
|
+ @PostMapping("/staticKnowledgeIndex")
|
|
|
+ @SysLogger("staticKnowledgeIndex")
|
|
|
+ public RespDTO<List<StaticKnowledgeIndexDTO>> staticKnowledgeIndex(@Valid @RequestBody StaticKnowledgeIndexVO staticKnowledgeIndexVO) {
|
|
|
+ staticKnowledgeIndexVO.setHasInfo(1);
|
|
|
+ List<StaticKnowledgeIndexDTO> data = klConceptStaticFacade.staticKnowledgeIndex(staticKnowledgeIndexVO);
|
|
|
+ return RespDTO.onSuc(data);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "获取静态知识列表[zhaops]",
|
|
|
notes = "type: 类型:1-诊断、2-药品、3-检验套餐、4-检验明细、5-检查、6-手术和操作、8-量表、9-护理、10-政策法规 <br>" +
|
|
|
"name: 术语名称<br>" +
|