HrmNavBarTreePointLevel5Vo.php 596 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 四级子节点
  4. * @author auto create
  5. */
  6. class HrmNavBarTreePointLevel5Vo
  7. {
  8. /**
  9. * 权限key
  10. **/
  11. public $auth_key;
  12. /**
  13. * 权限类型
  14. **/
  15. public $auth_type;
  16. /**
  17. * 节点code,全局唯一
  18. **/
  19. public $code;
  20. /**
  21. * 节点图标
  22. **/
  23. public $icon;
  24. /**
  25. * 节点名称
  26. **/
  27. public $name;
  28. /**
  29. * 是否无权限
  30. **/
  31. public $no_permission;
  32. /**
  33. * 顺序
  34. **/
  35. public $order;
  36. /**
  37. * 路径
  38. **/
  39. public $path;
  40. /**
  41. * 前端跳转识别字段
  42. **/
  43. public $sub_app_code;
  44. /**
  45. * 跳转链接
  46. **/
  47. public $url;
  48. }
  49. ?>