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
296 B
30 lines
296 B
<?php
|
|
|
|
/**
|
|
* user_info
|
|
* @author auto create
|
|
*/
|
|
class UserInfo
|
|
{
|
|
|
|
/**
|
|
* 用户主企业是否达到高级认证级别
|
|
**/
|
|
public $main_org_auth_high_level;
|
|
|
|
/**
|
|
* nick
|
|
**/
|
|
public $nick;
|
|
|
|
/**
|
|
* openid
|
|
**/
|
|
public $openid;
|
|
|
|
/**
|
|
* unionid
|
|
**/
|
|
public $unionid;
|
|
}
|
|
?>
|