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

feat:家庭医生初始化

上级 7f6c3036
...@@ -113,6 +113,7 @@ public class PatientServiceImpl implements PatientService { ...@@ -113,6 +113,7 @@ public class PatientServiceImpl implements PatientService {
psWrapper.setEntity(patientSign); psWrapper.setEntity(patientSign);
oldPatientSignEntity = patientSignMapper.selectOne(psWrapper); oldPatientSignEntity = patientSignMapper.selectOne(psWrapper);
signCreateTime = oldPatientSignEntity.getCreateTime(); signCreateTime = oldPatientSignEntity.getCreateTime();
log.info("入参查询oldPatientSignEntity={}", oldPatientSignEntity);
// 改签查询原始签约信息 // 改签查询原始签约信息
if (SignStatus.CANCEL.getValue().equals(reqVo.getSignStatus())) { if (SignStatus.CANCEL.getValue().equals(reqVo.getSignStatus())) {
QueryWrapper<PatientSignEntity> cpsWrapper = new QueryWrapper<>(); QueryWrapper<PatientSignEntity> cpsWrapper = new QueryWrapper<>();
...@@ -120,6 +121,7 @@ public class PatientServiceImpl implements PatientService { ...@@ -120,6 +121,7 @@ public class PatientServiceImpl implements PatientService {
cPatientSign.setId(oldPatientSignEntity.getSignId()); cPatientSign.setId(oldPatientSignEntity.getSignId());
cpsWrapper.setEntity(cPatientSign); cpsWrapper.setEntity(cPatientSign);
oldPatientSignEntity = patientSignMapper.selectOne(cpsWrapper); oldPatientSignEntity = patientSignMapper.selectOne(cpsWrapper);
log.info("改签查询原始oldPatientSignEntity={}", oldPatientSignEntity);
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论