|
@@ -4,8 +4,10 @@ import com.diagbot.client.hystrix.CdssCoreHystrix;
|
|
import com.diagbot.dto.IndicationDTO;
|
|
import com.diagbot.dto.IndicationDTO;
|
|
import com.diagbot.dto.PushDTO;
|
|
import com.diagbot.dto.PushDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
|
|
+import com.diagbot.dto.RetrievalDTO;
|
|
import com.diagbot.vo.IndicationPushVO;
|
|
import com.diagbot.vo.IndicationPushVO;
|
|
import com.diagbot.vo.PushVO;
|
|
import com.diagbot.vo.PushVO;
|
|
|
|
+import com.diagbot.vo.RetrievalVO;
|
|
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;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -25,6 +27,15 @@ public interface CdssCoreClient {
|
|
|
|
|
|
@PostMapping("/core/push")
|
|
@PostMapping("/core/push")
|
|
RespDTO<PushDTO> push(@RequestBody @Valid PushVO pushVo);
|
|
RespDTO<PushDTO> push(@RequestBody @Valid PushVO pushVo);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 化验大项、化验小项、辅检、诊断、药品、手术等检索
|
|
|
|
+ *
|
|
|
|
+ * @param retrievalVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/retrieval/index")
|
|
|
|
+ RespDTO<RetrievalDTO> index(@RequestBody @Valid RetrievalVO retrievalVO);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|