using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Curriculum { public class CurriculumSpecialWeekResult { public long Id { get; set; } /// /// 备 注:班级id /// 默认值: /// public long Classid { get; set; } /// /// 周类型(0普通课表,1单周,2双周) /// public int WeekType { get; set; } /// /// 备 注:周几 /// 默认值: /// public int WeekCount { get; set; } } }