using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace EMIS.ViewModel.ExaminationManage { public class ExaminationPlanGdssView : ExaminationPlanView { [DisplayName("建筑物")] public Guid? BuildingsInfoID { get; set; } [Required] [DisplayName("教室")] public Guid? ClassroomID { get; set; } [Required] [DisplayName("排序")] public Nullable StudentOrderType { get; set; } } }