SourceExercise.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace CMS.Models.Source
  7. {
  8. [SugarTable("exercise")]
  9. public class SourceExercise
  10. {
  11. [SugarColumn(IsNullable = false, IsPrimaryKey = true)]
  12. public int ExNO { get; set; }
  13. public int MemberID { get; set; }
  14. public int CourseNO { get; set; }
  15. public int ClassID { get; set; }
  16. public int TPID { get; set; }
  17. char ExType { get; set; }
  18. char ExMode { get; set; }
  19. public string ExName { get; set; }
  20. public string ExLink { get; set; }
  21. // public DateTime ExTime { get; set; }
  22. //public DateTime EndTime { get; set; }
  23. public int QNumber { get; set; }
  24. public int StuCount { get; set; }
  25. public int AnsNum { get; set; }
  26. public int TrueNum { get; set; }
  27. public float TrueRate { get; set; }
  28. public int TotalSpendTime { get; set; }
  29. public float AvgSpendTime { get; set; }
  30. public string Rule { get; set; }
  31. char Status { get; set; }
  32. public string ExNORec { get; set; }
  33. public string FilePath { get; set; }
  34. public string SERIALNUMBER { get; set; }
  35. public string Description { get; set; }
  36. public string ReportTitle { get; set; }
  37. public string ReportSubject { get; set; }
  38. public int ReportGrade { get; set; }
  39. public string ReportTestName { get; set; }
  40. // public DateTime ReportTestDate { get; set; }
  41. public float ScoreRate { get; set; }
  42. public float StdScore { get; set; }
  43. public int SchoolCount { get; set; }
  44. public int ClassCount { get; set; }
  45. public int ItemCount { get; set; }
  46. public float Median { get; set; }
  47. public int FClass { get; set; }
  48. }
  49. }