提交 2eebbb48 authored 作者: 杨凯's avatar 杨凯

fix:家庭医生查询排班添加医生简介

上级 f127c7b2
...@@ -41,4 +41,7 @@ public class DoctorSchedVo { ...@@ -41,4 +41,7 @@ public class DoctorSchedVo {
@ApiModelProperty("医生职称") @ApiModelProperty("医生职称")
private String doctorTitle; private String doctorTitle;
@ApiModelProperty(value = "医生简介")
private String introduction;
} }
...@@ -321,6 +321,8 @@ public class DoctorServiceImpl implements DoctorService { ...@@ -321,6 +321,8 @@ public class DoctorServiceImpl implements DoctorService {
doctorSchedVo.setDoctorPortrait(res.getData().getPortrait()); doctorSchedVo.setDoctorPortrait(res.getData().getPortrait());
doctorSchedVo.setDoctorProfession(res.getData().getProfession()); doctorSchedVo.setDoctorProfession(res.getData().getProfession());
doctorSchedVo.setDoctorTitle(res.getData().getTitle()); doctorSchedVo.setDoctorTitle(res.getData().getTitle());
doctorSchedVo.setIntroduction(res.getData().getIntroduction());
} }
return BaseResponse.success(doctorSchedVo); return BaseResponse.success(doctorSchedVo);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论