修复考试安排

This commit is contained in:
2026-07-27 16:47:55 +08:00 Unverified
parent 4d8de1e4ae
commit b8df564b85
3 changed files with 20 additions and 6 deletions
@@ -26,6 +26,9 @@ public sealed class MakeupExamArrangementService(AppDbContext db)
.Include(x => x.Sessions)
.ThenInclude(x => x.TeachingTask)
.ThenInclude(x => x!.Teachers)
.Include(x => x.Sessions)
.ThenInclude(x => x.TeachingTask)
.ThenInclude(x => x!.Course)
.FirstOrDefaultAsync(x => x.Id == planId, cancellationToken);
if (plan is null)