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

45 lines
599 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
/**
* 卖家子账号角色列表。<br/>返回对象为 role数据对象中的role_idrole_namedescriptionseller_idcreate_timemodified_time。不包含permissions(权限点)
* @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;
}
?>