ClearAutoScheduleView.cs 747 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel;
  7. namespace EMIS.ViewModel.EducationSchedule
  8. {
  9. public class ClearAutoScheduleView
  10. {
  11. [Required]
  12. [DisplayName("学年学期")]
  13. public Guid SchoolyearID { get; set; }
  14. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
  15. public Guid? CollegeID { get; set; }
  16. [DisplayName("年级")]
  17. public int? Year { get; set; }
  18. [DisplayName("专业")]
  19. public int? StandardID { get; set; }
  20. [DisplayName("班级名称")]
  21. public Guid? ClassmarjorID { get; set; }
  22. }
  23. }