|
@@ -19,6 +19,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.ConceptBaseDTO;
|
|
|
import com.diagbot.dto.GetAllConceptDTO;
|
|
|
+import com.diagbot.dto.GetAllForRelationDTO;
|
|
|
import com.diagbot.dto.GetAllInformationDTO;
|
|
|
import com.diagbot.dto.GetAllLisConceptDTO;
|
|
|
import com.diagbot.dto.GetConceptInfoDTO;
|
|
@@ -28,6 +29,7 @@ import com.diagbot.vo.AddConceptInfoVO;
|
|
|
import com.diagbot.vo.ConceptSearchVO;
|
|
|
import com.diagbot.vo.ConceptTypeVO;
|
|
|
import com.diagbot.vo.GetAllConceptVO;
|
|
|
+import com.diagbot.vo.GetAllForRelationVO;
|
|
|
import com.diagbot.vo.GetAllInformationVO;
|
|
|
import com.diagbot.vo.GetAllLisConceptVO;
|
|
|
import com.diagbot.vo.GetConceptInfoDetailVO;
|
|
@@ -66,6 +68,13 @@ public class ConceptController {
|
|
|
public RespDTO<List<GetAllConceptDTO>> getAllConcept(@RequestBody GetAllConceptVO getAllConceptVO) {
|
|
|
return RespDTO.onSuc(conceptFacade.getAllConcept(getAllConceptVO));
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取所有概念(术语关系维护时筛选使用)[by:rengb]")
|
|
|
+ @PostMapping("/getAllForRelation")
|
|
|
+ @SysLogger("getAllForRelation")
|
|
|
+ public RespDTO<List<GetAllForRelationDTO>> getAllForRelation(@RequestBody GetAllForRelationVO getAllForRelationVO) {
|
|
|
+ return RespDTO.onSuc(conceptFacade.getAllForRelation(getAllForRelationVO));
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation(value = "获取医学术语命名列表[by:rengb]")
|
|
|
@PostMapping("/getAllInformation")
|