using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos { public class LessonCount : CosmosEntity { public LessonCount() { pk = "LessonCount"; } //学校编码 /* public string school { get; set; } //区分是学校还是个人 学校school,个人private public string type { get; set; }*/ public List beginCount { get; set; } = new List(); //P矩阵 public List pCount { get; set; } = new List(); //T矩阵 public List tCount { get; set; } = new List(); public List ptCount { get; set; } = new List(); //public List courseIds { get; set; } = new List(); } }