LessonCount.cs 821 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos
  5. {
  6. public class LessonCount : CosmosEntity
  7. {
  8. public LessonCount() {
  9. pk = "LessonCount";
  10. }
  11. //学校编码
  12. /* public string school { get; set; }
  13. //区分是学校还是个人 学校school,个人private
  14. public string type { get; set; }*/
  15. public List<double> beginCount { get; set; } = new List<double>();
  16. //P矩阵
  17. public List<double> pCount { get; set; } = new List<double>();
  18. //T矩阵
  19. public List<double> tCount { get; set; } = new List<double>();
  20. public List<double> ptCount { get; set; } = new List<double>();
  21. //public List<string> courseIds { get; set; } = new List<string>();
  22. }
  23. }