HrmNavBarTreePointLevel4Vo.php 649 B

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