using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Curriculum { /// /// 课程定位结果。 /// public class CurriculumPostionResult { public long Id { get; set; } /// /// 备 注:班级id /// 默认值: /// public long ClassId { get; set; } /// /// 备 注:定位周开始时间 /// 默认值: /// public DateTime? PositionWeekStart { get; set; } /// /// 备 注:定位周结束时间 /// 默认值: /// public DateTime? PostionWeekEnd { get; set; } /// /// 备 注:定位周类型(0普通-不区分单双周,1单周,2双周) /// 默认值: /// public int PostionWeekType { get; set; } /// /// 备 注:添加时间 /// 默认值: /// public DateTime Addtime { get; set; } /// /// 备 注:添加人id /// 默认值: /// public long Userid { get; set; } } }