123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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>();
- }
- }
|