123456789101112131415161718192021222324 |
- 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<double> beginCount { get; set; } = new List<double>();
- //P矩阵
- public List<double> pCount { get; set; } = new List<double>();
- //T矩阵
- public List<double> tCount { get; set; } = new List<double>();
- public List<double> ptCount { get; set; } = new List<double>();
- //public List<string> courseIds { get; set; } = new List<string>();
- }
- }
|