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"
]
}
*/
///
/// 暂时不使用
/// 学生已经加入的名单列表
/// 分学校创建的学生名单和教师创建的私人名单
///
public class JoinList : CosmosEntity
{
public JoinList()
{
pk = "JoinList";
}
public List school { get; set; } = new List();
public List teacher { get; set; } = new List();
}
}