ExecutablePlanGenerateView.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.EducationManage
  8. {
  9. /// <summary>
  10. /// 计划生成视图
  11. /// </summary>
  12. public class ExecutablePlanGenerateView
  13. {
  14. public ExecutablePlanGenerateView()
  15. {
  16. IsOverwrite = false;
  17. }
  18. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
  19. public Guid? CampusID { get; set; }
  20. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
  21. public Guid? CollegeID { get; set; }
  22. [DisplayName("年级")]
  23. public int? YearID { get; set; }
  24. [DisplayName("专业")]
  25. public int? StandardID { get; set; }
  26. [Required]
  27. [DisplayName("年级专业")]
  28. public Guid? GrademajorID { get; set; }
  29. [Required]
  30. [DisplayName("学年学期")]
  31. public Guid? SchoolyearID { get; set; }
  32. [DisplayName("是否覆盖")]
  33. public bool IsOverwrite { get; set; }
  34. }
  35. }