using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace LearningOfficer.OA.Core.Entities.OA.Curriculum { /// /// 班级通用课时信息 /// [SugarTable("curriculum_headtime")] public class CurriculumHeadtime : BaseEntity { /// /// 周类型(0普通课表,1单周,2双周) /// [SugarColumn(ColumnName = "weektype")] public int WeekType { get; set; } /// /// 备 注:第几节 /// 默认值: /// [SugarColumn(ColumnName = "which_section" )] public int WhichSection { get; set; } /// /// 备 注:开始时间 /// 默认值: /// [SugarColumn(ColumnName = "start_time" )] public DateTime StartTime { get; set; } /// /// 备 注:结束时间 /// 默认值: /// [SugarColumn(ColumnName = "end_time" )] public DateTime EndTime { get; set; } /// /// 备 注:班级id /// 默认值: /// [SugarColumn(ColumnName = "classid" )] public long Classid { get; set; } /// /// 备 注:批次id /// 默认值: /// [SugarColumn(ColumnName = "batchid" )] public long Batchid { get; set; } /// /// 备 注:模型id /// 默认值: /// [SugarColumn(ColumnName = "model_id")] public long ModelId { get; set; } } }