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

76 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 备 注:名称
/// 默认值:
///</summary>
public string ClassName { get; set; } = null!;
/// <summary>
/// 备 注:学校编号
/// 默认值:
///</summary>
public long SchoolId { get; set; }
/// <summary>
/// 学校名称
/// </summary>
public string SchoolName { get; set; }
/// <summary>
/// 备 注:年级
/// 默认值:
///</summary>
public string GradeLevel { get; set; } = null!;
/// <summary>
/// 备 注:所属届
/// 默认值:
///</summary>
public int GraduationYear { get; set; }
/// <summary>
/// 备 注:添加时间
/// 默认值:
///</summary>
public DateTime CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 备 注:创建者部门Id
/// 默认值:
///</summary>
public long? CreatePositionId { get; set; } = 0;
/// <summary>
/// 备 注:删除状态
/// 默认值:
///</summary>
public bool DeleteState { get; set; }
/// <summary>
/// 备 注:班级类型
/// 默认值:
///</summary>
public ClassTypeEnum Type { get; set; } = ClassTypeEnum.;
/// <summary>
/// 备 注:教学层级 1普通本科 2重点本科 默认0未设置
/// 默认值:
///</summary>
public Enums.TeachingLevelEnum TeachingLevel { get; set; }
}
}