TchList.cs 679 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class TchList : CosmosEntity
  7. {
  8. public TchList()
  9. {
  10. pk = "TchList";
  11. }
  12. public List<string> teachers { get; set; }
  13. public string name { get; set; }
  14. //标记该名单唯一code
  15. public string no { get; set; }
  16. public string scope { get; set; }
  17. public string school { get; set; }
  18. public string creatorId { get; set; }
  19. /// <summary>
  20. /// teacher 教师分组名单 , research 教研组名单
  21. /// </summary>
  22. public string type { get; set; }
  23. }
  24. }