ClassAnalysis.cs 971 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos
  5. {
  6. public class ClassAnalysis
  7. {
  8. public ClassAnalysis()
  9. {
  10. subjects = new List<SubjectScore>();
  11. total = new List<double>();
  12. }
  13. public List<string> studentIds { get; set; } = new List<string>();
  14. public int stuCount { get; set; }
  15. public int lineCount { get; set; }
  16. public List<SubjectScore> subjects { get; set; }
  17. public string classId { get; set; }
  18. public List<double> total { get;set;}
  19. public double totalAverage { get; set; }
  20. public double standardDeviation { get; set; }
  21. public class SubjectScore {
  22. public SubjectScore() {
  23. }
  24. public string id { get; set; }
  25. public double passPercent { get; set; }
  26. public double averageScore { get; set; }
  27. }
  28. }
  29. }