using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace LearningOfficer.OA.Core.Entities.OA.Curriculum { /// /// 课程模板的课程详情 /// [SugarTable("curriculum_info_detail")] public class CurriculumInfoDetail : BaseEntity { /// /// 备 注:班级id /// 默认值: /// [SugarColumn(ColumnName = "class_id" )] public long ClassId { get; set; } /// /// 备 注:周几(1-7对应周一到周日) /// 默认值: /// [SugarColumn(ColumnName = "week_count" )] public int WeekCount { get; set; } /// /// 备 注:第几节 /// 默认值: /// [SugarColumn(ColumnName = "section_count" )] public int SectionCount { get; set; } /// /// 备 注:开始时间 /// 默认值: /// [SugarColumn(ColumnName = "start_time" )] public DateTime StartTime { get; set; } /// /// 备 注:结束时间 /// 默认值: /// [SugarColumn(ColumnName = "end_time" )] public DateTime EndTime { get; set; } /// /// 备 注:该班级科目教师表id /// 默认值: /// [SugarColumn(ColumnName = "sub_teacher_id" )] public long SubTeacherId { get; set; } /// /// 备 注:批次id /// 默认值: /// [SugarColumn(ColumnName = "batch_id" )] public long BatchId { get; set; } /// /// 备 注:模板id /// 默认值: /// [SugarColumn(ColumnName = "model_id" )] public long ModelId { get; set; } /// /// 备 注:周类型(0普通课表-不分单双周,1单周,2双周) /// 默认值: /// [SugarColumn(ColumnName = "week_type" )] public int WeekType { get; set; } /// /// 备 注:是否删除,0正常,1删除 /// 默认值: /// [SugarColumn(ColumnName = "isdel")] public int Isdel { get; set; } /// /// 添加时间 /// [SugarColumn(ColumnName = "addtime")] public DateTime AddTime { get; set; } } }