CollegeScheduleApprovalView.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. using EMIS.ViewModel.CacheManage;
  7. using System.ComponentModel.DataAnnotations;
  8. namespace EMIS.ViewModel.SchedulingManage.ScheduleApproval
  9. {
  10. public class CollegeScheduleApprovalView
  11. {
  12. [DisplayName("学年学期")]
  13. public Guid? SchoolyearID { get; set; }
  14. [DisplayName("学年学期")]
  15. public string SchoolYearCode { get; set; }
  16. [DisplayName("院系排课优先级设置ID")]
  17. public Guid? CollegePriorityID { get; set; }
  18. [DisplayName("院系排课优先级设置ID")]
  19. public Guid? CollegeScheduleStatusID { get; set; }
  20. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
  21. public Guid? CollegeID { get; set; }
  22. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
  23. public string CollegeName { get; set; }
  24. public string CollegeNo { get; set; }
  25. [DisplayName("优先级")]
  26. public int? Priority { get; set; }
  27. [DisplayName("开始日期")]
  28. public DateTime? StartDate { get; set; }
  29. [DisplayName("结束日期")]
  30. public DateTime? EndDate { get; set; }
  31. [DisplayName("审批状态")]
  32. public int? ApprovalStatus { get; set; }
  33. [DisplayName("状态")]
  34. public string StatusName { get; set; }
  35. [DisplayName("状态")]
  36. public int? RecordStatus { get; set; }
  37. [DisplayName("创建人")]
  38. public Guid? CreateUserID { get; set; }
  39. [DisplayName("创建时间")]
  40. public DateTime? CreateTime { get; set; }
  41. [DisplayName("修改人")]
  42. public Guid? ModifyUserID { get; set; }
  43. [DisplayName("修改人")]
  44. public string ModifyUserName { get; set; }
  45. [DisplayName("修改时间")]
  46. public DateTime? ModifyTime { get; set; }
  47. }
  48. }