using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LearningOfficer.OA.Common.Enums;
using UserCenter.Model.Enum;
namespace LearningOfficer.OA.Common.Dtos.Classes
{
public class ClassDataListResult
{
public long Id { get; set; }
///
/// 备 注:名称
/// 默认值:
///
public string ClassName { get; set; } = null!;
///
/// 备 注:学校编号
/// 默认值:
///
public long SchoolId { get; set; }
///
/// 学校名称
///
public string SchoolName { get; set; }
///
/// 备 注:年级
/// 默认值:
///
public string GradeLevel { get; set; } = null!;
///
/// 备 注:所属届
/// 默认值:
///
public int GraduationYear { get; set; }
///
/// 备 注:添加时间
/// 默认值:
///
public DateTime CreateTime { get; set; } = DateTime.Now;
///
/// 备 注:创建者部门Id
/// 默认值:
///
public long? CreatePositionId { get; set; } = 0;
///
/// 备 注:删除状态
/// 默认值:
///
public bool DeleteState { get; set; }
///
/// 备 注:班级类型
/// 默认值:
///
public ClassTypeEnum Type { get; set; } = ClassTypeEnum.云校班;
///
/// 备 注:教学层级 1:普通本科 2:重点本科 默认0未设置
/// 默认值:
///
public Enums.TeachingLevelEnum TeachingLevel { get; set; }
}
}