栈溢出

This commit is contained in:
Ranyunqiao
2026-03-12 17:31:50 +08:00
parent 066cfaba46
commit 2bfdd686c7

View File

@@ -77,7 +77,7 @@ public class EncounterParticipantServiceImpl extends ServiceImpl<EncounterPartic
@Override
public Integer updateEncounterParticipantsStatus(Long encounterId) {
// 更新状态为已完成
Integer result = baseMapper.update(null,
return baseMapper.update(null,
new LambdaUpdateWrapper<EncounterParticipant>()
.set(EncounterParticipant::getStatusEnum, EncounterActivityStatus.COMPLETED.getValue())
.eq(EncounterParticipant::getEncounterId, encounterId)
@@ -85,7 +85,6 @@ public class EncounterParticipantServiceImpl extends ServiceImpl<EncounterPartic
.in(EncounterParticipant::getTypeCode,
ParticipantType.ATTENDING_DOCTOR.getCode(), ParticipantType.CHIEF_DOCTOR.getCode(),
ParticipantType.PRIMARY_NURSE.getCode(), ParticipantType.ADMITTING_DOCTOR.getCode()));
return result;
}
/*