using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Classes
{
public class ClassDetailResult
{
public long Id { get; set; }
///
/// 班级名称
///
public string Name { get; set; } = null!;
///
/// 备 注:年级
/// 默认值:
///
public string GradeLevel { get; set; }
///
/// 备 注:学生人数
/// 默认值:
///
public int StudentCount { get; set; }
///
/// 备 注:所属届
/// 默认值:
///
public int GraduationYear { get; set; }
///
/// 学校ID
///
public long SchoolId { get; set; }
///
/// 学校名称
///
public string SchoolName { get; set; }
///
/// 选修课指标1
///
public int? Elective1 { get; set; }
///
/// 选修课指标1名称
///
public string? Elective1Name { get; set; }
///
/// 选修课指标2
///
public int? Elective2 { get; set; }
///
/// 选修课指标2名称
///
public string? Elective2Name { get; set; }
///
/// 选修课指标3
///
public int? Elective3 { get; set; }
///
/// 选修课指标3名称
///
public string? Elective3Name { get; set; }
}
}