2024-09-29 15:43:18 +08:00

45 lines
534 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
/**
* 子账号被赋予的角色信息(Role)列表。列表中的角色对象只有role_idrole_namepermissions信息
* @author auto create
*/
class Role
{
/**
* 创建时间
**/
public $create_time;
/**
* 角色描述
**/
public $description;
/**
* 修改时间
**/
public $modified_time;
/**
* 所拥有权限
**/
public $permissions;
/**
* 角色id
**/
public $role_id;
/**
* 角色名
**/
public $role_name;
/**
* 卖家Id
**/
public $seller_id;
}
?>