using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class GroupList : CosmosEntity { public GroupList() { pk = "GroupList"; } public string name { get; set; } //标记该名单唯一code public string no { get; set; } public string periodId { get; set; } //课程id,需要标记则标记 //public string courseId { get; set; } public string scope { get; set; } public string school { get; set; } public string creatorId { get; set; } /// ///教学班teach ,行政班(学生搜寻classId动态返回)class ,教研组research,学科组(学科搜寻动态返回)subject,好友friend,管理manage,群组group等 /// public string type { get; set; } = "teach"; public int year { get; set; } /// /// 醍摩豆id成员数量 /// public int tcount { get; set; } /// /// 校内账号成员数量 /// public int scount { get; set; } public List members { get; set; } = new List(); } public class Member { /// /// 账号id /// public string id { get; set; } //学生所在的学校 public string code { get; set; } /// /// 名称 /// public string name { get; set; } /// ///类型 1 tmdid,2 student /// public int type { get; set; } /// /// 头像 /// public string picture { get; set; } /// ///座号 /// public string no { get; set; } /// /// IRS WebIRS编号。 /// public string irs { get; set; } public string tag { get; set; } } }