|
@@ -19,7 +19,38 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
}
|
|
|
public string courseId { get; set; }
|
|
|
public string periodId { get; set; }
|
|
|
- public List<string> studentId { get; set; } = new List<string>();
|
|
|
- public List<double> score { get; set; } = new List<double>();
|
|
|
+ public List<LessonStudent> students { get; set; } = new List<LessonStudent>();
|
|
|
+ public List<string> groupIds { get; set; } = new List<string>();
|
|
|
+ public List<LessonClientSummary> clientSummaryList { get; set; } = new List<LessonClientSummary>();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public class LessonClientSummary
|
|
|
+ {
|
|
|
+ public string groupName { get; set; }//組名
|
|
|
+ public double groupScore { get; set; }//組記分
|
|
|
+
|
|
|
+ public int groupTaskCompleteCount { get; set; }//組任務數完成數
|
|
|
+ public int attendState { get; set; } //出席狀態
|
|
|
+
|
|
|
+ public double score { get; set; }//個人記分
|
|
|
+ public int taskCompleteCount { get; set; }//任務完成數
|
|
|
+
|
|
|
+ public List<double> examScoreList { get; set; } = new List<double>();//課堂測驗分數Array
|
|
|
+
|
|
|
+ public double tnteractScore { get; set; }//互動總得分
|
|
|
+
|
|
|
+ public List<string> answerLis { get; set; } = new List<string>(); //逐題回答內容Array
|
|
|
+
|
|
|
+ public int seatID { get; set; } //座位號
|
|
|
+
|
|
|
+ public string name { get; set; }//學生姓名
|
|
|
+ }
|
|
|
+ public class LessonStudent {
|
|
|
+ public string id { get; set; }//ID
|
|
|
+ public string school { get; set; }//ID
|
|
|
+ public int seatID { get; set; }//座號
|
|
|
+ public string name { get; set; }//姓名
|
|
|
+ public int type { get; set; }//帳戶類型 type=1 醍摩豆id, type=2 校内账号
|
|
|
}
|
|
|
}
|