AbilityTaskTree.cs 1.1 KB

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