文档
测试

收益明细

POST
/app/income-record/inlist

请求头

参数名
类型
描述
必填
token
String
必填

请求参数

参数名
类型
描述
必填
mid
int
用户id 必须
必填

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填
obj
Object
返回数据
必填
total
int
总共数据量
必填
size
int
当前显示条数
必填
current
int
当前页
必填
pages
int
总共多少页
必填
records
Array
明细列表
必填
id
int
明细id
必填
memberId
int
用户id
必填
type
int
收入类型:1分销课程 2分销试卷
必填
info
String
收入信息
必填
amount
float
收入金额
必填
status
int
消费状态:0不成功;1已成功
必填
note
String
备注
必填
createdTime
String
收入时间
必填
isDel
int
是否删除:0否1是
必填
payMid
int
支付方
必填
cnName
String
姓名
必填
niName
String
昵称
必填

说明 / 示例

## `返回示例` ```java { "code": 0, "msg": "请求成功", "obj": { "records": [ { "id": 124, "memberId": 124, "type": 0, "info": null, "amount": 0.00, "status": 1, "note": null, "createdTime": "2020-07-09 17:44:08", "isDel": 0, "payMid": 0, "cnName": "小刘讲师", "niName": "高级讲师", "paySide": null, "cpType": 2 }, { "id": 124, "memberId": 124, "type": 0, "info": null, "amount": 0.00, "status": 1, "note": null, "createdTime": "2020-07-09 17:44:08", "isDel": 0, "payMid": 0, "cnName": "小刘���师", "niName": "高级讲师", "paySide": null, "cpType": 2 } ], "total": 40, "size": 2, "current": 1, "orders": [], "hitCount": false, "searchCount": true, "pages": 20 } } ```