|
@@ -1,18 +1,21 @@
|
|
|
package com.diagbot.client;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+
|
|
|
import com.diagbot.client.hystrix.TranServiceHystrix;
|
|
|
import com.diagbot.dto.DoctorInfoDTO;
|
|
|
import com.diagbot.dto.HospitalDeptInfoDTO;
|
|
|
import com.diagbot.dto.HospitalInfoDTO;
|
|
|
+import com.diagbot.dto.LisConfigDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.vo.DoctorInfoVO;
|
|
|
import com.diagbot.vo.HospitalDeptInfoVO;
|
|
|
import com.diagbot.vo.HospitalInfoVO;
|
|
|
-import org.springframework.cloud.openfeign.FeignClient;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
+import com.diagbot.vo.LisHospitalCodeVO;
|
|
|
|
|
|
/**
|
|
|
* @Description: 调用信息对接层服务
|
|
@@ -47,4 +50,11 @@ public interface TranServiceClient {
|
|
|
*/
|
|
|
@PostMapping("/hospitalInfo/getHospitalInfo")
|
|
|
RespDTO<List<HospitalInfoDTO>> getHospitalInfo(@RequestBody HospitalInfoVO hospitalInfoVO);
|
|
|
+ /**
|
|
|
+ * 匹配公表名
|
|
|
+ * @param lisHospitalCodeVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/tranLisConfig/getLisConfigByhospitalId")
|
|
|
+ RespDTO<List<LisConfigDTO>> getLisConfigByhospitalId(@RequestBody LisHospitalCodeVO lisHospitalCodeVO);
|
|
|
}
|