123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel;
- namespace EMIS.ViewModel
- {
- public class ExamSubjectLimitView
- {
- public Guid ExaminationSubjectCountLimitID { get; set; }
- [Required]
- [DisplayName("考试类型")]
- public Guid? ExaminationTypeID { get; set; }
- [Required]
- [DisplayName("标准专业")]
- public int? StandardID { get; set; }
- [Required]
- [DisplayName("年级")]
- public int? SchoolyearNumID { get; set; }
- [Required]
- [DisplayName("报名门数")]
- public int? SubjectCountLimit { get; set; }
- public string SchoolyearNumName { get; set; }
- public string StandardName { get; set; }
- public string ExaminationTypeName { get; set; }
- }
- }
|