This commit is contained in:
huzhiyun 2026-01-26 16:26:05 +08:00
parent 5d773ddbe3
commit 444e683397
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;
}