|
@@ -4,6 +4,7 @@ import com.diagbot.client.hystrix.ICSSServiceHystrix;
|
|
|
import com.diagbot.dto.EMRIntroduceDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.vo.EMRIntroduceVO;
|
|
|
+import com.diagbot.vo.PushVO;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -25,4 +26,13 @@ public interface ICSSServiceClient {
|
|
|
*/
|
|
|
@PostMapping("/introduceInfo/getIntroduceByEMR")
|
|
|
RespDTO<List<EMRIntroduceDTO>> getIntroduceByEMR(@RequestBody EMRIntroduceVO emrIntroduceVO);
|
|
|
-}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 检验检查推理
|
|
|
+ *
|
|
|
+ * @param pushVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/push/pushEMR")
|
|
|
+ RespDTO<List<String>> pushEMR(@RequestBody PushVO pushVO);
|
|
|
+}
|