using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace LearningOfficer.OA.Core.Entities.OA.Curriculum { /// /// 生成的课表 /// [SugarTable("curriculum_timetable")] public class CurriculumTimetable : BaseEntity { /// /// 备 注:班级id /// 默认值: /// [SugarColumn(ColumnName = "class_id" )] public long ClassId { get; set; } /// /// 备 注:日期 /// 默认值: /// [SugarColumn(ColumnName = "date" )] public DateTime Date { 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; } /// /// 备 注:周几(1-7对应周一到周日) /// 默认值: /// [SugarColumn(ColumnName = "week_count" )] public int WeekCount { get; set; } /// /// 备 注:第几节 /// 默认值: /// [SugarColumn(ColumnName = "section_count" )] public int SectionCount { get; set; } /// /// 备 注:批次id /// 默认值: /// [SugarColumn(ColumnName = "batchid" )] public long Batchid { get; set; } /// /// 备 注:添加时间 /// 默认值: /// [SugarColumn(ColumnName = "addtime" )] public DateTime Addtime { get; set; } /// /// 备 注:添加用户,自动生成为0 /// 默认值: /// [SugarColumn(ColumnName = "adduser" )] public long Adduser { get; set; } } }