You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
338 B
35 lines
338 B
<?php
|
|
|
|
/**
|
|
* xx
|
|
* @author auto create
|
|
*/
|
|
class UserBindParam
|
|
{
|
|
|
|
/**
|
|
* 扩展字段
|
|
**/
|
|
public $extension;
|
|
|
|
/**
|
|
* 主帐号ID
|
|
**/
|
|
public $outer_id;
|
|
|
|
/**
|
|
* 主帐号名称
|
|
**/
|
|
public $outer_nick;
|
|
|
|
/**
|
|
* 子帐号ID
|
|
**/
|
|
public $sub_outer_id;
|
|
|
|
/**
|
|
* 子帐号名称
|
|
**/
|
|
public $sub_outer_nick;
|
|
}
|
|
?>
|