1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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<int>();
- this.WeekdayList = new List<int>();
- this.CoursesTimeIDList = new List<Guid>();
- }
- public System.Guid ClassroomExcessiveUseID { get; set; }
- [Required]
- [DisplayName("教室")]
- public Nullable<System.Guid> ClassroomID { get; set; }
- [Required]
- [DisplayName("学年学期")]
- public Nullable<System.Guid> SchoolyearID { get; set; }
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "UsingCollege")]
- public Nullable<System.Guid> CollegeID { get; set; }
- [DisplayName("使用人")]
- public Nullable<System.Guid> UserID { get; set; }
- [DisplayName("活动内容")]
- public string Content { get; set; }
- [DisplayName("周次")]
- public List<int> WeekNumList { get; set; }
- [DisplayName("星期")]
- public List<int> WeekdayList { get; set; }
- [DisplayName("节次")]
- public List<Guid> CoursesTimeIDList { get; set; }
- }
- }
|