JoinList.cs 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. /// </summary>
  32. public class JoinList : CosmosEntity
  33. {
  34. public JoinList()
  35. {
  36. pk = "JoinList";
  37. }
  38. public List<string> school { get; set; } = new List<string>();
  39. public List<string> teacher { get; set; } = new List<string>();
  40. }
  41. }