1234567891011121314151617181920212223 |
- 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<int> StudentOrderType { get; set; }
- }
- }
|