ListChange.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class ListChange
  7. {
  8. /// <summary>
  9. /// 醍摩豆学生名单加入的成员
  10. /// </summary>
  11. public List<string> tmdjoin { get; set; } = new List<string>();
  12. /// <summary>
  13. /// 醍摩豆学生名单离开的成员
  14. /// </summary>
  15. public List<string> tmdhleave { get; set; } = new List<string>();
  16. /// <summary>
  17. /// 学校学生名单加入的成员
  18. /// </summary>
  19. public List<Students> stujoin { get; set; } = new List<Students>();
  20. /// <summary>
  21. /// 学校学生名单离开的成员
  22. /// </summary>
  23. public List<Students> stuleave { get; set; } = new List<Students>();
  24. /// <summary>
  25. /// 学校教师名单加入的成员
  26. /// </summary>
  27. public List<string> tchjoin { get; set; } = new List<string>();
  28. /// <summary>
  29. /// 学校教师名单离开的成员
  30. /// </summary>
  31. public List<string> tchleave { get; set; } = new List<string>();
  32. public string listid { get; set; }
  33. /// <summary>
  34. /// 分区
  35. /// </summary>
  36. public string scope { get; set; }
  37. public string originCode { get; set; }
  38. public string school { get; set; }
  39. public string creatorId { get; set; }
  40. public string type { get; set; }
  41. }
  42. }