ExamClassResult.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. studentScores = new List<List<double>>();
  18. sum = new List<double>();
  19. mark = new List<string>();
  20. ans = new List<List<List<string>>>();
  21. }
  22. public string school { get; set; }
  23. public string examId { get; set; }
  24. public string subjectId { get; set; }
  25. public string gradeId { get; set; }
  26. public int year { get; set; }
  27. public ClassInfo info { get; set; }
  28. public bool progress { get; set; } = false;
  29. //public PaperSimple paper { get; set; }
  30. //public List<double> point { get; set; }
  31. public List<string> studentIds { get; set; }
  32. public List<List<string>> studentAnswers { get; set; }
  33. //记录学生客观题选项内容,便于学情分析
  34. public List<List<List<string>>> ans { get; set; }
  35. public List<List<double>> studentScores { get; set; }
  36. //批注
  37. public List<string> mark { get; set; }
  38. public string scope { get; set; }
  39. public List<double> sum { get; set; }
  40. public double average { get; set; }
  41. //单科单班得分率
  42. public double srate { get; set; }
  43. //单科单班标准差
  44. public double standard { get; set; }
  45. //知识点结算内容
  46. public List<double> krate { get; set; } = new List<double>();
  47. public List<int> phc { get; set; } = new List<int>();
  48. public List<int> plc { get; set; } = new List<int>();
  49. public List<int> pc { get; set; } = new List<int>();
  50. //认知层次结算内容
  51. public List<double> frate { get; set; } = new List<double>();
  52. public List<int> fphc { get; set; } = new List<int>();
  53. public List<int> fplc { get; set; } = new List<int>();
  54. public List<int> fpc { get; set; } = new List<int>();
  55. }
  56. /* public class PaperSimple {
  57. public string id { get; set; }
  58. public string name { get; set; }
  59. public string code { get; set; }
  60. public string blob { get; set; }
  61. public string scope { get; set; }
  62. }*/
  63. public class ClassInfo {
  64. public string id { get; set; }
  65. public string name { get; set; }
  66. //public string code { get; set; }
  67. }
  68. }