JoinList.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  5. {
  6. /*
  7. * {
  8. "id": "28936",
  9. "code": "JoinList-hbcn",
  10. "school": [
  11. "schoolClassid1"
  12. ],
  13. "teacher": [
  14. "stulistGUID"
  15. ]
  16. },
  17. {
  18. "id": "tmdid",
  19. "code": "JoinList-tmdid",
  20. "school": [
  21. "schoolClassid1"
  22. ],
  23. "teacher": [
  24. "schoolClassid1"
  25. ]
  26. }
  27. */
  28. /// <summary>
  29. /// 暂时不使用
  30. /// 学生已经加入的名单列表
  31. /// 分学校创建的学生名单和教师创建的私人名单
  32. /// </summary>
  33. public class JoinList : CosmosEntity
  34. {
  35. public JoinList()
  36. {
  37. pk = "JoinList";
  38. }
  39. public List<string> school { get; set; } = new List<string>();
  40. public List<string> teacher { get; set; } = new List<string>();
  41. }
  42. }