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.
30 lines
280 B
30 lines
280 B
<?php
|
|
|
|
/**
|
|
* xx
|
|
* @author auto create
|
|
*/
|
|
class UserBindDto
|
|
{
|
|
|
|
/**
|
|
* 中心组织唯一ID
|
|
**/
|
|
public $associate_union_id;
|
|
|
|
/**
|
|
* 扩展字段
|
|
**/
|
|
public $extension;
|
|
|
|
/**
|
|
* 帐号列表
|
|
**/
|
|
public $outer_list;
|
|
|
|
/**
|
|
* token
|
|
**/
|
|
public $token;
|
|
}
|
|
?>
|