提交 26f6662d authored 作者: 杨凯's avatar 杨凯

feat:家庭医生初始化

上级 59923495
...@@ -36,6 +36,12 @@ public class ImInfoResVo { ...@@ -36,6 +36,12 @@ public class ImInfoResVo {
@ApiModelProperty("医生科室id") @ApiModelProperty("医生科室id")
private String deptId; private String deptId;
@ApiModelProperty("患者名称")
private String patientName;
@ApiModelProperty("患者头像")
private String patientPortrait;
@ApiModelProperty("IM历史消息") @ApiModelProperty("IM历史消息")
private List<IMMsgResultVo> iMMsgVo; private List<IMMsgResultVo> iMMsgVo;
} }
...@@ -129,6 +129,9 @@ public class PatientSignServiceImpl implements PatientSignService { ...@@ -129,6 +129,9 @@ public class PatientSignServiceImpl implements PatientSignService {
.sig(imSysResult.getData().getSig()) .sig(imSysResult.getData().getSig())
.doctorName(patientSignEntity.getDoctorName()) .doctorName(patientSignEntity.getDoctorName())
.build(); .build();
// 患者信息
resVo.setPatientName(patientSignEntity.getPatientName());
resVo.setPatientPortrait("");
QueryPersonnelInfoReq queryPersonnelInfoReq = new QueryPersonnelInfoReq(); QueryPersonnelInfoReq queryPersonnelInfoReq = new QueryPersonnelInfoReq();
queryPersonnelInfoReq.setDoctorId(String.valueOf(patientSignEntity.getDoctorId())); queryPersonnelInfoReq.setDoctorId(String.valueOf(patientSignEntity.getDoctorId()));
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论