SyllabusTree.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections.Generic;
  2. using TEAMModelOS.SDK.Models.Cosmos.Common;
  3. namespace TEAMModelOS.SDK.Models
  4. {
  5. public class SyllabusTree : Tnode
  6. {
  7. public SyllabusTree() {
  8. children = new List<SyllabusTree>();
  9. }
  10. public List<SyllabusTree> children { get; set; }
  11. }
  12. public class SyllabusTreeNode {
  13. public SyllabusTreeNode(){
  14. trees = new List<SyllabusTree>();
  15. }
  16. /// <summary>
  17. /// 课纲章节id
  18. /// </summary>
  19. public string id { get; set; }
  20. /// <summary>
  21. /// 册别的id
  22. /// </summary>
  23. public string volumeId { get; set; }
  24. /// <summary>
  25. /// 校本课纲时传入 学校编码,私人课纲时传入醍摩豆ID
  26. /// </summary>
  27. public string codeval { get; set; }
  28. public string scope { get; set; }
  29. public List<SyllabusTree> trees { get; set; }
  30. public List<SyllabusAuth> auth { get; set; } = new List<SyllabusAuth>();
  31. }
  32. }