ExaminationBatchView.cs 1003 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. using System.ComponentModel.DataAnnotations;
  7. namespace EMIS.ViewModel
  8. {
  9. public class ExaminationBatchView
  10. {
  11. [Required]
  12. [DisplayName("考试批次")]
  13. public System.Guid ExaminationBatchID { get; set; }
  14. public string Schoolyear { get; set; }
  15. [Required]
  16. [DisplayName("学年学期")]
  17. public Nullable<System.Guid> SchoolyearID { get; set; }
  18. [Required]
  19. [DisplayName("考试批次")]
  20. public string Name { get; set; }
  21. [Required]
  22. [DisplayName("报名时间起")]
  23. public Nullable<System.DateTime> StartDate { get; set; }
  24. [Required]
  25. [DisplayName("报名时间止")]
  26. public Nullable<System.DateTime> EndDate { get; set; }
  27. [DisplayName("备注")]
  28. public string Remark { get; set; }
  29. public int? RecordStatus { get; set; }
  30. }
  31. }