StuListChange.cs 1009 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  5. {
  6. public class StuListChange
  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. public string listid { get; set; }
  25. /// <summary>
  26. /// 分区
  27. /// </summary>
  28. public string scope { get; set; }
  29. public string originCode { get; set; }
  30. }
  31. }