提交 b77e2f96 authored 作者: 杨凯's avatar 杨凯

feat:家庭医生初始化

上级 13d5acb5
......@@ -17,4 +17,19 @@
<!-- <version>1.0.0</version>-->
<packaging>jar</packaging>
<dependencies>
<!--在线门诊实体服务-->
<dependency>
<groupId>com.ebaiyihui</groupId>
<artifactId>family-doctor-common</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-openfeign-core</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
package com.ebaiyihui.family.doctor.client;
import com.ebaiyihui.family.doctor.common.dto.RequestServiceConfigDTO;
import com.ebaiyihui.framework.response.BaseResponse;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* @ClassName: PatientSignClient
* @Author:yanliang
* @Date:2024/3/15 13:46
* @Description
*/
@FeignClient(value = "byh-family-doctor")
public interface PatientSignClient {
/**
* //添加/修改医生服务信息
*
* @param configVo
* @return com.ebaiyihui.framework.response.BaseResponse<java.lang.Object>
* @author:duanyl
* @Date 2020/8/11 9:34 AM
**/
@ApiOperation(value = "添加/修改医生服务信息", notes = "医生服务feign调用")
@RequestMapping(value = "/patientSign/saveServiceInfo", method = RequestMethod.POST)
public BaseResponse<Object> saveServiceInfo(@RequestBody RequestServiceConfigDTO configVo);
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论