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

feat:家庭医生初始化

上级 2cd76b40
......@@ -31,7 +31,6 @@ public class ImMsgTemplateController {
public BaseResponse<String> sendImMsg(@RequestBody SendImMsgDTO reqVo,
BindingResult bindingResult) {
BaseResponse<String> response = null;
try {
response = imMsgTemplateService.sendImMsg(reqVo);
......
......@@ -111,6 +111,14 @@ public class MobileBenefitPackageServiceImpl implements MobileBenefitPackageServ
if (Objects.nonNull(map.get("signSeqId"))) {
registerPatientVo.setSignSeqId(map.get("signSeqId"));
PatientSignEntity patientSignEntity = patientSignMapper.selectById(Long.valueOf(map.get("signSeqId")));
registerPatientVo.setAdmId(patientSignEntity.getAdmId());
// 更新权益医生id
if (Objects.nonNull(patientSignEntity)) {
entity.setDoctorId(String.valueOf(patientSignEntity.getDoctorId()));
mobileBenefitPackageMapper.updateDoctorId(entity);
}
}
String patientId = map.get("patient_id");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论