|
@@ -0,0 +1,44 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Text;
|
|
|
+
|
|
|
+namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
+{
|
|
|
+
|
|
|
+ /*
|
|
|
+ * {
|
|
|
+ "id": "28936",
|
|
|
+ "code": "JoinList-hbcn",
|
|
|
+ "school": [
|
|
|
+ "schoolClassid1"
|
|
|
+ ],
|
|
|
+ "teacher": [
|
|
|
+ "stulistGUID"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": "tmdid",
|
|
|
+ "code": "JoinList-tmdid",
|
|
|
+ "school": [
|
|
|
+ "schoolClassid1"
|
|
|
+ ],
|
|
|
+ "teacher": [
|
|
|
+ "schoolClassid1"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ */
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 学生已经加入的名单列表
|
|
|
+ /// 分学校创建的学生名单和教师创建的私人名单
|
|
|
+ /// </summary>
|
|
|
+ public class JoinList : CosmosEntity
|
|
|
+ {
|
|
|
+ public JoinList()
|
|
|
+ {
|
|
|
+ pk = "JoinList";
|
|
|
+ }
|
|
|
+ public List<string> school { get; set; } = new List<string>();
|
|
|
+ public List<string> teacher { get; set; } = new List<string>();
|
|
|
+ }
|
|
|
+}
|