SOCCourseScoreView.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel.CacheManage;
  6. namespace EMIS.ViewModel.DQPSystem
  7. {
  8. public class SOCCourseScoreView
  9. {
  10. public Guid? SOCID { get; set; }
  11. public Guid? SchoolyearID { get; set; }
  12. public string SchoolyearCode { get; set; }
  13. public Guid? CoursematerialID { get; set; }
  14. public string CourseCode { get; set; }
  15. public string CourseName { get; set; }
  16. public decimal? TotalCredit { get; set; }
  17. public Guid? CollegeID { get; set; }
  18. public string CollegeNo { get; set; }
  19. public string CollegeName { get; set; }
  20. public int? Gradeyear { get; set; }
  21. public int? StandardID { get; set; }
  22. public string StandardDesc
  23. {
  24. get
  25. {
  26. return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString())
  27. .Where(x => x.Value == StandardID)
  28. .Select(x => x.Name).FirstOrDefault();
  29. }
  30. }
  31. public Guid? ClassmajorID { get; set; }
  32. public string ClassmajorNo { get; set; }
  33. public string ClassmajorName { get; set; }
  34. public Guid? UserID { get; set; }
  35. public string LoginID { get; set; }
  36. public string Name { get; set; }
  37. public decimal? TotalScore { get; set; }
  38. public decimal? Credit { get; set; }
  39. }
  40. }