45 lines
472 B
PHP
45 lines
472 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* oauthOtherInfo
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class OAuthOtherInfo
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* access_token
|
||
|
**/
|
||
|
public $access_token;
|
||
|
|
||
|
/**
|
||
|
* avatarUrl
|
||
|
**/
|
||
|
public $avatar_url;
|
||
|
|
||
|
/**
|
||
|
* id
|
||
|
**/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* nick
|
||
|
**/
|
||
|
public $nick;
|
||
|
|
||
|
/**
|
||
|
* 三方平台的openId
|
||
|
**/
|
||
|
public $open_id;
|
||
|
|
||
|
/**
|
||
|
* 三方平台类型
|
||
|
**/
|
||
|
public $platform_type;
|
||
|
|
||
|
/**
|
||
|
* 三方平台的unionId
|
||
|
**/
|
||
|
public $union_id;
|
||
|
}
|
||
|
?>
|