|
@@ -17,11 +17,46 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
public LessonStudentRecord() {
|
|
|
pk = "LessonStudentRecord";
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 课程
|
|
|
+ /// </summary>
|
|
|
public string courseId { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 学段
|
|
|
+ /// </summary>
|
|
|
public string periodId { get; set; }
|
|
|
- public List<LessonStudent> students { get; set; } = new List<LessonStudent>();
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 不填 科目id,由课程id获取
|
|
|
+ /// </summary>
|
|
|
+ public string subjectId { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 名单信息
|
|
|
+ /// </summary>
|
|
|
public List<string> groupIds { get; set; } = new List<string>();
|
|
|
+ /// <summary>
|
|
|
+ /// 学生
|
|
|
+ /// </summary>
|
|
|
+ public List<LessonStudent> students { get; set; } = new List<LessonStudent>();
|
|
|
+ /// <summary>
|
|
|
+ /// 学生互动信息
|
|
|
+ /// </summary>
|
|
|
public List<ClientSummaryList> clientSummaryList { get; set; } = new List<ClientSummaryList>();
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ ///必填 教师醍摩豆id
|
|
|
+ /// </summary>
|
|
|
+ public string tmdid { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ ///必填 课堂名称
|
|
|
+ /// </summary>
|
|
|
+ public string name { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ ///必填 scope==school必填 | string | 学校id
|
|
|
+ /// </summary>
|
|
|
+ public string school { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ ///必填 private/school|
|
|
|
+ /// </summary>
|
|
|
+ public string scope { get; set; }
|
|
|
}
|
|
|
}
|