|
@@ -37,7 +37,8 @@ public class KlDiseaseController {
|
|
|
@ApiOperation(value = "查询诊断依据相关的类型术语[by:kongwz]",
|
|
|
notes = "name: 查询术语的名称<br>" +
|
|
|
"libType: 查询术语的词性<br>" +
|
|
|
- "excludedConceptIds: 需要排除的概念id集合")
|
|
|
+ "excludedConceptIds: 需要排除的概念id集合"+
|
|
|
+ "sign: 新增 -1 修改 2")
|
|
|
@PostMapping("/searchConcept")
|
|
|
@SysLogger("searchConcept")
|
|
|
public RespDTO<List<GetAllForRelationDTO>> searchConcept(@Valid @RequestBody SearchConceptVO searchConceptVO) {
|
|
@@ -45,4 +46,26 @@ public class KlDiseaseController {
|
|
|
return RespDTO.onSuc(getAllForRelationDTOS);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "术语集合新增[by:kongwz]",
|
|
|
+ notes = "name: 查询术语的名称<br>" +
|
|
|
+ "libType: 查询术语的词性<br>" +
|
|
|
+ "excludedConceptIds: 需要排除的概念id集合")
|
|
|
+ @PostMapping("/addConceptClass")
|
|
|
+ @SysLogger("addConceptClass")
|
|
|
+ public RespDTO<List<GetAllForRelationDTO>> addConceptClass(@Valid @RequestBody SearchConceptVO searchConceptVO) {
|
|
|
+ List<GetAllForRelationDTO> getAllForRelationDTOS = klConceptFacade.addConceptClass(searchConceptVO);
|
|
|
+ return RespDTO.onSuc(getAllForRelationDTOS);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "规则维护术语查询[by:kongwz]",
|
|
|
+ notes = "name: 查询术语的名称<br>" +
|
|
|
+ "libType: 查询术语的词性<br>" +
|
|
|
+ "excludedConceptIds: 需要排除的概念id集合")
|
|
|
+ @PostMapping("/searchConceptRuleClass")
|
|
|
+ @SysLogger("searchConceptRuleClass")
|
|
|
+ public RespDTO<List<GetAllForRelationDTO>> searchConceptRuleClass(@Valid @RequestBody SearchConceptVO searchConceptVO) {
|
|
|
+ List<GetAllForRelationDTO> getAllForRelationDTOS = klConceptFacade.searchConceptRuleClass(searchConceptVO);
|
|
|
+ return RespDTO.onSuc(getAllForRelationDTOS);
|
|
|
+ }
|
|
|
+
|
|
|
}
|