收徒记录列表
## 收徒记录列表
### 请求地址:/v1/disciple/record
### 请求方法: get
### 请求参数
|参数|类型|是否必传|说明|
|--|--|--|--|
|page|integer|否|页码,默认1
|page_size|integer|否|一页多少条,默认10
### 返回格式:
```
{
"code":"200",
"message":"",
"data":{
"total_page":"",
"total_count":"",
"lists":[
{
"user_id":"",//用户id
"avatar":"",//用户头像
"nickname":"",//昵称
"amount":"",//累计收入
"created_at":"",//时间
}
]
}
}
```