123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 四级子节点
- * @author auto create
- */
- class HrmNavBarTreePointLevel5Vo
- {
-
- /**
- * 权限key
- **/
- public $auth_key;
-
- /**
- * 权限类型
- **/
- public $auth_type;
-
- /**
- * 节点code,全局唯一
- **/
- public $code;
-
- /**
- * 节点图标
- **/
- public $icon;
-
- /**
- * 节点名称
- **/
- public $name;
-
- /**
- * 是否无权限
- **/
- public $no_permission;
-
- /**
- * 顺序
- **/
- public $order;
-
- /**
- * 路径
- **/
- public $path;
-
- /**
- * 前端跳转识别字段
- **/
- public $sub_app_code;
-
- /**
- * 跳转链接
- **/
- public $url;
- }
- ?>
|