用户信息
## 获取用户信息
### 请求方式 get post
### 请求地址
```
http://play2019.wan911.com/api/do/
```
### 请求参数
| 参数 | 说明 | 类型 | 备注 | 是否必填 |
| ------- | -------- | ------ | ------------------------ | -------- |
| type | 请求类型 | string | 固定值 get_userinfo | 是 |
| uid | 用户编号 | int | 1254879511 | 是 |
| gid | 游戏编号 | int | 1254879511 | 是 |
#### 返回值
```json
{
"code": 1,
"msg": "成功",
"data":{
"Uid":"",// 账号标识
"Uname":"",// 账号
"Coin":"",// 平台币
"Points":"",// 点券
"NickName":"",// 昵称
"UserFace":"",// 头像
"Vip":"0",//vip等级
"PayUrl":"xxxx",//充值地址
}
}
```