Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Curriculum/CurriculumInfoDetailResult.cs

98 lines
2.2 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;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
/// <summary>
/// 课程模板的课程详情
/// </summary>
public class CurriculumInfoDetailResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:班级id
/// 默认值:
///</summary>
public long ClassId { get; set; }
/// <summary>
/// 备 注:周几(1-7对应周一到周日)
/// 默认值:
///</summary>
public int WeekCount { get; set; }
/// <summary>
/// 备 注:第几节
/// 默认值:
///</summary>
public int SectionCount { get; set; }
/// <summary>
/// 备 注:开始时间
/// 默认值:
///</summary>
public DateTime StartTime { get; set; }
/// <summary>
/// 备 注:结束时间
/// 默认值:
///</summary>
public DateTime EndTime { get; set; }
/// <summary>
/// 备 注:该班级科目教师表id
/// 默认值:
///</summary>
public long SubTeacherId { get; set; }
/// <summary>
/// 备 注:科目id
/// </summary>
public long? SubjectId { get; set; }
/// <summary>
/// 备 注:科目名称
/// </summary>
public string SubjectName { get; set; }
/// <summary>
/// 备 注:教师id
/// </summary>
public long? TeacherId { get; set; }
/// <summary>
/// 备 注:教师名称
/// </summary>
public string? TeacherName { get; set; }
/// <summary>
/// 备 注:批次id
/// 默认值:
///</summary>
public long BatchId { get; set; }
/// <summary>
/// 备 注:模板id
/// 默认值:
///</summary>
public long ModelId { get; set; }
/// <summary>
/// 备 注:周类型0普通课表-不分单双周1单周2双周
/// 默认值:
///</summary>
public int WeekType { get; set; }
}
}