|
@@ -138,14 +138,17 @@ namespace TEAMModelOS.SDK.Models.Cosmos.School
|
|
|
{
|
|
|
items = new List<ScoreCalcActivityItems>();
|
|
|
stuAttendFunction = new List<string>();
|
|
|
- stuAttendVals = new List<List<string>>();
|
|
|
- stuAttendScores = new List<List<double>>();
|
|
|
+ stuActAttendOrgVals = new List<List<string>>();
|
|
|
+ stuActAttendScores = new List<List<double>>();
|
|
|
+ stuAttendScores = new List<double>();
|
|
|
stuPointFunction = new List<string>();
|
|
|
- stuPointVals = new List<List<int>>();
|
|
|
- stuPointScores = new List<List<double>>();
|
|
|
+ stuActPointOrgVals = new List<List<int>>();
|
|
|
+ stuActPointScores = new List<List<double>>();
|
|
|
+ stuPointScores = new List<double>();
|
|
|
stuItactFunction = new List<string>();
|
|
|
- stuItactVals = new List<List<int>>();
|
|
|
- stuItactScores = new List<List<double>>();
|
|
|
+ stuActItactOrgVals = new List<List<int>>();
|
|
|
+ stuActItactScores = new List<List<double>>();
|
|
|
+ stuItactScores = new List<double>();
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 被選取的課堂紀錄列表
|
|
@@ -156,37 +159,49 @@ namespace TEAMModelOS.SDK.Models.Cosmos.School
|
|
|
/// </summary>
|
|
|
public List<string> stuAttendFunction { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄出席 系統原值
|
|
|
+ /// 各學生各課堂紀錄出席 系統原值
|
|
|
/// </summary>
|
|
|
- public List<List<string>> stuAttendVals { get; set; }
|
|
|
+ public List<List<string>> stuActAttendOrgVals { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄出席 分數
|
|
|
+ /// 各學生各課堂紀錄出席 分數
|
|
|
/// </summary>
|
|
|
- public List<List<double>> stuAttendScores { get; set; }
|
|
|
+ public List<List<double>> stuActAttendScores { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 各學生所有課堂紀錄出席 分數
|
|
|
+ /// </summary>
|
|
|
+ public List<double> stuAttendScores { get; set; }
|
|
|
/// <summary>
|
|
|
/// 課堂紀錄記分板 採用的公式ID
|
|
|
/// </summary>
|
|
|
public List<string> stuPointFunction { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄記分板 系統原值
|
|
|
+ /// 各學生各課堂紀錄記分板 系統原值
|
|
|
+ /// </summary>
|
|
|
+ public List<List<int>> stuActPointOrgVals { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 各學生各課堂紀錄記分板 分數
|
|
|
/// </summary>
|
|
|
- public List<List<int>> stuPointVals { get; set; }
|
|
|
+ public List<List<double>> stuActPointScores { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄記分板 分數
|
|
|
+ /// 各學生所有課堂紀錄記分板 分數
|
|
|
/// </summary>
|
|
|
- public List<List<double>> stuPointScores { get; set; }
|
|
|
+ public List<double> stuPointScores { get; set; }
|
|
|
/// <summary>
|
|
|
/// 課堂紀錄互動 採用的公式ID
|
|
|
/// </summary>
|
|
|
public List<string> stuItactFunction { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄互動 系統原值
|
|
|
+ /// 各學生各課堂紀錄互動 系統原值
|
|
|
+ /// </summary>
|
|
|
+ public List<List<int>> stuActItactOrgVals { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 各學生各課堂紀錄互動 分數
|
|
|
/// </summary>
|
|
|
- public List<List<int>> stuItactVals { get; set; }
|
|
|
+ public List<List<double>> stuActItactScores { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 各學生課堂紀錄互動 分數
|
|
|
+ /// 各學生所有課堂紀錄互動 分數
|
|
|
/// </summary>
|
|
|
- public List<List<double>> stuItactScores { get; set; }
|
|
|
+ public List<double> stuItactScores { get; set; }
|
|
|
/// <summary>
|
|
|
/// 出席加權數
|
|
|
/// </summary>
|