|
@@ -8,14 +8,14 @@ import com.diagbot.dto.ConceptIntroduceDTO;
|
|
import com.diagbot.dto.DictionaryInfoDTO;
|
|
import com.diagbot.dto.DictionaryInfoDTO;
|
|
import com.diagbot.dto.DisclaimerInformationDTO;
|
|
import com.diagbot.dto.DisclaimerInformationDTO;
|
|
import com.diagbot.dto.PushDTO;
|
|
import com.diagbot.dto.PushDTO;
|
|
|
|
+import com.diagbot.dto.PushSetDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.dto.RetrievalDTO;
|
|
import com.diagbot.dto.RetrievalDTO;
|
|
-import com.diagbot.dto.ScaleIndexDTO;
|
|
|
|
import com.diagbot.dto.VersionWrapperDTO;
|
|
import com.diagbot.dto.VersionWrapperDTO;
|
|
import com.diagbot.vo.ConceptIntroduceVO;
|
|
import com.diagbot.vo.ConceptIntroduceVO;
|
|
import com.diagbot.vo.DisclaimerInformationVO;
|
|
import com.diagbot.vo.DisclaimerInformationVO;
|
|
import com.diagbot.vo.GetStaticKnowledgeVO;
|
|
import com.diagbot.vo.GetStaticKnowledgeVO;
|
|
-import com.diagbot.vo.ScaleIndexVO;
|
|
|
|
|
|
+import com.diagbot.vo.PushSetVO;
|
|
import com.diagbot.vo.VersionVO;
|
|
import com.diagbot.vo.VersionVO;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -42,6 +42,15 @@ public interface AiptServiceClient {
|
|
@PostMapping("/push/pushInner")
|
|
@PostMapping("/push/pushInner")
|
|
RespDTO<PushDTO> pushInner(@RequestBody SearchVO searchVO);
|
|
RespDTO<PushDTO> pushInner(@RequestBody SearchVO searchVO);
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 推理配置项
|
|
|
|
+ *
|
|
|
|
+ * @param pushSetVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/pushSet/getPushSet")
|
|
|
|
+ RespDTO<PushSetDTO> getPushSet(@RequestBody PushSetVO pushSetVO);
|
|
|
|
+
|
|
|
|
|
|
@PostMapping("/disclaimerInformation/getDisclaimerInformations")
|
|
@PostMapping("/disclaimerInformation/getDisclaimerInformations")
|
|
RespDTO<List<DisclaimerInformationDTO>> getDisclaimerInformations(@RequestBody DisclaimerInformationVO disclaimerInformationVO);
|
|
RespDTO<List<DisclaimerInformationDTO>> getDisclaimerInformations(@RequestBody DisclaimerInformationVO disclaimerInformationVO);
|
|
@@ -97,14 +106,14 @@ public interface AiptServiceClient {
|
|
@PostMapping("/concept/getStaticKnowledge")
|
|
@PostMapping("/concept/getStaticKnowledge")
|
|
RespDTO<List<RetrievalDTO>> getStaticKnowledge(@RequestBody GetStaticKnowledgeVO getStaticKnowledgeVO);
|
|
RespDTO<List<RetrievalDTO>> getStaticKnowledge(@RequestBody GetStaticKnowledgeVO getStaticKnowledgeVO);
|
|
|
|
|
|
-// /**
|
|
|
|
-// * 量表搜索
|
|
|
|
-// *
|
|
|
|
-// * @param scaleIndexVO
|
|
|
|
-// * @return
|
|
|
|
-// */
|
|
|
|
-// @PostMapping(value = "/scale/index")
|
|
|
|
-// RespDTO<List<ScaleIndexDTO>> index(@RequestBody ScaleIndexVO scaleIndexVO);
|
|
|
|
|
|
+ // /**
|
|
|
|
+ // * 量表搜索
|
|
|
|
+ // *
|
|
|
|
+ // * @param scaleIndexVO
|
|
|
|
+ // * @return
|
|
|
|
+ // */
|
|
|
|
+ // @PostMapping(value = "/scale/index")
|
|
|
|
+ // RespDTO<List<ScaleIndexDTO>> index(@RequestBody ScaleIndexVO scaleIndexVO);
|
|
|
|
|
|
/**
|
|
/**
|
|
* 获取字典信息
|
|
* 获取字典信息
|