|
@@ -56,10 +56,23 @@ namespace TEAMModelOS.SDK.Models
|
|
|
public string scope { get; set; }
|
|
|
|
|
|
public List<string> tmdids { get; set; } = new List<string>();
|
|
|
+ /// <summary>
|
|
|
+ /// 行政班
|
|
|
+ /// </summary>
|
|
|
public List<string> classes { get; set; } = new List<string>();
|
|
|
+ /// <summary>
|
|
|
+ /// 学生名单(包含自定义个人学生名单,学校教学班)
|
|
|
+ /// </summary>
|
|
|
public List<string> stuLists { get; set; } = new List<string>();
|
|
|
+ /// <summary>
|
|
|
+ /// 教研组名单
|
|
|
+ /// </summary>
|
|
|
public List<string> tchLists { get; set; } = new List<string>();
|
|
|
/// <summary>
|
|
|
+ /// student 学生名单类型 research 教研组名单
|
|
|
+ /// </summary>
|
|
|
+ public string targetType { get; set; }
|
|
|
+ /// <summary>
|
|
|
/// 发布对象全部信息。由前端操作,用于前端回显发布对象的格式。
|
|
|
/// </summary>
|
|
|
public List<JsonElement> targets { get; set; } = new List<JsonElement>();
|