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 ClearAutoScheduleView { [Required] [DisplayName("学年学期")] public Guid SchoolyearID { get; set; } [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public Guid? CollegeID { get; set; } [DisplayName("年级")] public int? Year { get; set; } [DisplayName("专业")] public int? StandardID { get; set; } [DisplayName("班级名称")] public Guid? ClassmarjorID { get; set; } } }