Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
B
byh-family-doctor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
包
包
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
杨凯
byh-family-doctor
Commits
b77e2f96
提交
b77e2f96
authored
3月 15, 2024
作者:
杨凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:家庭医生初始化
上级
13d5acb5
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
46 行增加
和
0 行删除
+46
-0
pom.xml
family-doctor-client/pom.xml
+15
-0
PatientSignClient.java
...com/ebaiyihui/family/doctor/client/PatientSignClient.java
+31
-0
没有找到文件。
family-doctor-client/pom.xml
浏览文件 @
b77e2f96
...
...
@@ -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
family-doctor-client/src/main/java/com/ebaiyihui/family/doctor/client/PatientSignClient.java
0 → 100644
浏览文件 @
b77e2f96
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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论