CoursematerialPlanView.cs 929 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ScoreManage
  6. {
  7. public class CoursematerialPlanView
  8. {
  9. public Guid? CollegeID { get; set; }
  10. public string CollegeName { get; set; }
  11. public int? SchoolyearNumID { get; set; }
  12. public int? SchoolcodeID { get; set; }
  13. public int? StartTermID { get; set; }
  14. public Guid? CoursematerialID { get; set; }
  15. public string CourseCode { get; set; }
  16. public string CourseName { get; set; }
  17. //public string? Tag { get; set; }
  18. public int? CourseTypeID { get; set; }
  19. public decimal? Credit { get; set; }
  20. public Guid? SpecialtyID { get; set; }
  21. public int? Years { get; set; }
  22. public int? TypePlan { get; set; }
  23. public Guid? SchoolyearID { get; set; }
  24. public string SchoolyearCode { get; set; }
  25. }
  26. }