ExamClassResult.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. using TEAMModelOS.SDK.DI;
  7. namespace TEAMModelOS.SDK.Models
  8. {
  9. public class ExamClassResult : CosmosEntity
  10. {
  11. public ExamClassResult() {
  12. pk = "ExamClassResult";
  13. studentAnswers = new List<List<string>>();
  14. studentScores = new List<List<double>>();
  15. info = new ClassInfo();
  16. studentIds = new List<string>();
  17. sum = new List<double>();
  18. mark = new List<List<List<Details>>>();
  19. ans = new List<List<List<string>>>();
  20. }
  21. public string school { get; set; }
  22. public string examId { get; set; }
  23. public string subjectId { get; set; }
  24. public string gradeId { get; set; }
  25. public int year { get; set; }
  26. public ClassInfo info { get; set; }
  27. public bool progress { get; set; } = false;
  28. //public PaperSimple paper { get; set; }
  29. //public List<double> point { get; set; }
  30. public List<string> studentIds { get; set; }
  31. public List<List<string>> studentAnswers { get; set; }
  32. //记录学生客观题选项内容,便于学情分析
  33. public List<List<List<string>>> ans { get; set; }
  34. public List<List<double>> studentScores { get; set; }
  35. //批注
  36. public List<List<List<Details>>> mark { get; set; }
  37. public string scope { get; set; }
  38. public List<double> sum { get; set; }
  39. public double average { get; set; }
  40. //单科单班得分率
  41. public double srate { get; set; }
  42. //单科单班标准差
  43. public double standard { get; set; }
  44. //知识点结算内容
  45. public List<double> krate { get; set; } = new List<double>();
  46. public List<int> phc { get; set; } = new List<int>();
  47. public List<int> plc { get; set; } = new List<int>();
  48. public List<int> pc { get; set; } = new List<int>();
  49. //认知层次结算内容
  50. public List<double> frate { get; set; } = new List<double>();
  51. public List<int> fphc { get; set; } = new List<int>();
  52. public List<int> fplc { get; set; } = new List<int>();
  53. public List<int> fpc { get; set; } = new List<int>();
  54. }
  55. /* public class PaperSimple {
  56. public string id { get; set; }
  57. public string name { get; set; }
  58. public string code { get; set; }
  59. public string blob { get; set; }
  60. public string scope { get; set; }
  61. }*/
  62. public class ClassInfo {
  63. public string id { get; set; }
  64. public string name { get; set; }
  65. public string periodId { get; set; }
  66. public int year { get; set; }
  67. //public string from { get; set; }
  68. //public string code { get; set; }
  69. }
  70. public class Details {
  71. public double sc { get; set; }
  72. public string tmdId { get; set; }
  73. //记录老师批注信息
  74. public string mark { get; set; }
  75. //记录老师身份信息
  76. public string identity { get; set; }
  77. public int index { get; set; }
  78. }
  79. }