using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.DataAnnotations; using System.ComponentModel; namespace EMIS.ViewModel.EducationSchedule { public class ClassroomExcessiveUseEditView { public ClassroomExcessiveUseEditView() { this.WeekNumList = new List(); this.WeekdayList = new List(); this.CoursesTimeIDList = new List(); } public System.Guid ClassroomExcessiveUseID { get; set; } [Required] [DisplayName("教室")] public Nullable ClassroomID { get; set; } [Required] [DisplayName("学年学期")] public Nullable SchoolyearID { get; set; } [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "UsingCollege")] public Nullable CollegeID { get; set; } [DisplayName("使用人")] public Nullable UserID { get; set; } [DisplayName("活动内容")] public string Content { get; set; } [DisplayName("周次")] public List WeekNumList { get; set; } [DisplayName("星期")] public List WeekdayList { get; set; } [DisplayName("节次")] public List CoursesTimeIDList { get; set; } } }