ExerciseInfo.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. namespace TEAMModelOS.Model.EvaluaTion.Dtos
  7. {
  8. public class ExerciseInfo
  9. {
  10. [JsonPropertyName("ExNO")]
  11. public string ExNO { get; set; }
  12. [JsonPropertyName("ExName")]
  13. public string Ex_name { get; set; }
  14. [JsonPropertyName("ExTime")]
  15. public string Ex_time { get; set; }
  16. [JsonPropertyName("EndTime")]
  17. public string End_time { get; set; }
  18. [JsonPropertyName("ExType")]
  19. public string Ex_type { get; set; }
  20. [JsonPropertyName("ExMode")]
  21. public string Ex_mode { get; set; }
  22. [JsonPropertyName("CourseNO")]
  23. public string Course_no { get; set; }
  24. [JsonPropertyName("CourseCode")]
  25. public string Class_code { get; set; }
  26. [JsonPropertyName("CourseName")]
  27. public string Class_name { get; set; }
  28. [JsonPropertyName("ClassID")]
  29. public string Class_no { get; set; }
  30. [JsonPropertyName("ReportSubject")]
  31. public string Course_name { get; set; }
  32. [JsonPropertyName("SERIALNUMBER")]
  33. public string Serialnumber { get; set; }
  34. [JsonPropertyName("StuCount")]
  35. public string Stucount { get; set; }
  36. [JsonPropertyName("AvgScore")]
  37. public string AvgScore { get; set; }
  38. [JsonPropertyName("QNumber")]
  39. public string QNumber { get; set; }
  40. [JsonIgnore]
  41. public string Cover { get; set; } = "1";
  42. [JsonPropertyName("SchoolName")]
  43. public string SchoolName { get; set; }
  44. [JsonPropertyName("GradeName")]
  45. public string GradeName {get;set;}
  46. [JsonPropertyName("AcademicYear")]
  47. public string AcademicYear { get; set; }
  48. [JsonPropertyName("SOrder")]
  49. public string SOrder { get; set; }
  50. }
  51. }