REAPI/extend/sdk/taobao/top/domain/Permission.php
2024-09-29 15:43:18 +08:00

30 lines
384 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 权限列表
* @author auto create
*/
class Permission
{
/**
* 1 :允许授权 2不允许授权 6不允许授权但默认已有权限
**/
public $is_authorize;
/**
* 父权限code
**/
public $parent_code;
/**
* 注册到权限中心的code值
**/
public $permission_code;
/**
* 权限名称
**/
public $permission_name;
}
?>