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动态返回)student ,教研组research,学科组(学科搜寻动态返回)subject,好友friend,管理manage,群组group等
///
public string type { get; set; } = "teach";
public List members { get; set; } = new List();
}
public class Member
{
///
/// 账号id
///
public string id { get; set; }
//学生所在的学校
public string code { get; set; }
///
///类型 1 tmdid,2 student
///
public int type { get; set; }
///
/// 头像
///
public string picture { get; set; }
///
/// IRS WebIRS编号。
///
public string no { get; set; }
public string role { get; set; }
}
}