Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Classes/ClassesAndFollowResult.cs

38 lines
909 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Classes
{
public class ClassesAndFollowResult
{
public long Id { get; set; }
/// <summary>
/// 班级id
/// </summary>
public string Name { get; set; } = null!;
/// <summary>
/// 备 注:年级
/// 默认值:
///</summary>
public string GradeLevel { get; set; }
/// <summary>
/// 备 注:所属届
/// 默认值:
///</summary>
public int GraduationYear { get; set; }
/// <summary>
/// 学习官名称
/// </summary>
public string FollowName { get; set; } = null!;
/// <summary>
/// 学习官id
/// </summary>
public long FollowId { get; set; }
}
}