|
@@ -28,11 +28,10 @@ import com.diagbot.vo.PatientInfoVO;
|
|
|
*/
|
|
|
@FeignClient(value = "tran-service", fallback = TranServiceHystrix.class)
|
|
|
public interface TranServiceClient {
|
|
|
-// @PostMapping(value = "/web/doc/algorithm/neural")
|
|
|
-// Response<ResponseData> bayesPageData(@RequestBody SearchData searchData);
|
|
|
|
|
|
/**
|
|
|
* 获取医生信息
|
|
|
+ *
|
|
|
* @param doctorInfoVo
|
|
|
* @return
|
|
|
*/
|
|
@@ -41,6 +40,7 @@ public interface TranServiceClient {
|
|
|
|
|
|
/**
|
|
|
* 获取科室信息
|
|
|
+ *
|
|
|
* @param hospitalDeptInfoVO
|
|
|
* @return
|
|
|
*/
|
|
@@ -49,13 +49,16 @@ public interface TranServiceClient {
|
|
|
|
|
|
/**
|
|
|
* 获取医院信息
|
|
|
+ *
|
|
|
* @param hospitalInfoVO
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/hospitalInfo/getHospitalInfo")
|
|
|
RespDTO<List<HospitalInfoDTO>> getHospitalInfo(@RequestBody HospitalInfoVO hospitalInfoVO);
|
|
|
+
|
|
|
/**
|
|
|
* 匹配公表名
|
|
|
+ *
|
|
|
* @param lisHospitalCodeVO
|
|
|
* @return
|
|
|
*/
|
|
@@ -64,17 +67,19 @@ public interface TranServiceClient {
|
|
|
|
|
|
/**
|
|
|
* 获取患者信息
|
|
|
+ *
|
|
|
* @param patientInfoVO
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/patientInfo/getPatientInfo")
|
|
|
- RespDTO<PatientInfoDTO> getPatientInfo( @RequestBody PatientInfoVO patientInfoVO);
|
|
|
-
|
|
|
+ RespDTO<PatientInfoDTO> getPatientInfo(@RequestBody PatientInfoVO patientInfoVO);
|
|
|
+
|
|
|
/**
|
|
|
* 获取页面顶部病人医生科室信息
|
|
|
+ *
|
|
|
* @param getTopPatientInfoVO
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/patientInfo/getTopPatientInfo")
|
|
|
- RespDTO<GetTopPatientInfoDTO> getTopPatientInfo( @RequestBody GetTopPatientInfoVO getTopPatientInfoVO);
|
|
|
+ RespDTO<GetTopPatientInfoDTO> getTopPatientInfo(@RequestBody GetTopPatientInfoVO getTopPatientInfoVO);
|
|
|
}
|