12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.School
- {
- public class ClassAnalysis
- {
- public ClassAnalysis()
- {
- subjects = new List<SubjectScore>();
- total = new List<double>();
- }
- public int stuCount { get; set; }
- public int lineCount { get; set; }
- public List<SubjectScore> subjects { get; set; }
- public string classId { get; set; }
- public string className { get; set; }
- public List<double> total { get; set; }
- public double totalAverage { get; set; }
- public double standardDeviation { get; set; }
- public class SubjectScore {
- public SubjectScore() {
- passPersent = new List<double>();
- averageScore = new List<double>();
- }
- public string id { get; set; }
- public string name { get; set; }
- public List<double> passPersent { get; set; }
- public List<double> averageScore { get; set; }
- }
- }
- }
|