ExaminationSubjectView.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace EMIS.ViewModel.Students
  7. {
  8. public class ExaminationApplyView
  9. {
  10. public Guid ExaminationSubjectID { get; set; }
  11. public string Name { get; set; }
  12. public DateTime? StartDate { get; set; }
  13. public DateTime? EndDate { get; set; }
  14. public DateTime? ExaminationDate { get; set; }
  15. public int? PeopleNumLimit { get; set; }
  16. public decimal? Cost { get; set; }
  17. public string Remark { get; set; }
  18. public int RegisterNum { get; set; }
  19. public int BKCS { get; set; }
  20. [DisplayName("是否已报考")]
  21. public bool IsRister { get; set; }
  22. [DisplayName("是否已报考")]
  23. public string IsRisterName
  24. {
  25. get { return IsRister == true ? "是" : "否"; }
  26. }
  27. public int? SchoolYearNum { get; set; }
  28. }
  29. public class ExaminationRegisView
  30. {
  31. public Guid ExaminationRegistrationID { get; set; }
  32. public Guid ExaminationSubjectID { get; set; }
  33. public string Name { get; set; }
  34. public DateTime? StartDate { get; set; }
  35. public DateTime? EndDate { get; set; }
  36. public DateTime? ExaminationDate { get; set; }
  37. public int? PeopleNumLimit { get; set; }
  38. public decimal? Cost { get; set; }
  39. public string Remark { get; set; }
  40. public string CertificatesType { get; set; }
  41. public int Jishu { get; set; }
  42. public string IDNumber { get; set; }
  43. public int? SchoolYearNum { get; set; }
  44. [DisplayName("报名学年学期")]
  45. public Guid? SchoolYearID { get; set; }
  46. public string SchoolYearCode { get; set; }
  47. [DisplayName("考试学年学期")]
  48. public Guid? ExaminationSchoolYearID { get; set; }
  49. public string ExaminationSchoolYearCode { get; set; }
  50. }
  51. }