This commit is contained in:
Q 2026-01-26 16:26:20 +08:00
commit fca6440bc0
2 changed files with 6 additions and 1 deletions

View File

@ -46,5 +46,9 @@ namespace LearningOfficer.OA.Common.Dtos.User
/// 默认值:
///</summary>
public int GraduationYear { get; set; }
/// <summary>
/// 账号
/// </summary>
public string Account { get; set; }
}
}

View File

@ -73,7 +73,8 @@ namespace LearningOfficer.OA.Services
ClassName = c.ClassName,
GradeLevel = c.GradeLevel,
GraduationYear = c.GraduationYear,
SchoolName = s.Name
SchoolName = s.Name,
Account = u.Account
}).ToListAsync();
return result;
}