|
@@ -46,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);
|
|
|
+ }
|
|
|
+
|
|
|
}
|