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; }
public string scope { get; set; }
public string school { get; set; }
public string creatorId { get; set; }
///
/// student 学生名单类型,教研组research,学科组subject,好友friend,管理manage等
///
public string type { get; set; } = "student";
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; }
// public string role { get; set; }
}
}