ExamClassResult.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. 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 class PaperSimple {
  51. public string id { get; set; }
  52. public string name { get; set; }
  53. public string code { get; set; }
  54. public string blob { get; set; }
  55. public string scope { get; set; }
  56. }*/
  57. public class ClassInfo {
  58. public string id { get; set; }
  59. public string name { get; set; }
  60. //public string code { get; set; }
  61. }
  62. }