using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class TchList : CosmosEntity { public TchList() { pk = "TchList"; } public List teachers { get; set; } public string name { get; set; } //标记该名单唯一code public string no { get; set; } public string scope { get; set; } public string school { get; set; } public string creatorId { get; set; } /// /// teacher 教师分组名单 , research 教研组名单 /// public string type { get; set; } } }