简要描述:
- 收入列表接口
请求域名:
- http://test.yunzshop.com
请求URL:
GET/app/index.php?i=6&c=entry&do=shop&m=yun_shop&route=finance.income.get-income-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
i | 是 | int | 店铺ID |
type | 否 | string | 类型 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "获取数据成功!",
"data": [
{
"create_month": "2017-03",
"has_many_income": [
{
"id": 1,
"create_month": "2017-03",
"type_name": "分销佣金",
"amount": "4666.50",
"created_at": "2017-03-28 10:43:40"
},
{
"id": 2,
"create_month": "2017-03",
"type_name": "分销佣金",
"amount": "4148.00",
"created_at": "2017-03-28 10:43:40"
}
]
},
{
"create_month": "2017-02",
"has_many_income": [
{
"id": 3,
"create_month": "2017-02",
"type_name": "分销佣金",
"amount": "4666.50",
"created_at": "2017-02-28 10:43:40"
}
]
}
]
}
错误时返回:
{
"result": 0,
"msg": "未检测到数据!",
"data": {}
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
create_month | string | 月份 |
has_many_income | array | 收入列表 |
has_many_income参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | ID |
type_name | string | 类型名称 |
amount | float | 收入金额 |
created_at | string | 时间 |
备注:
- 更多返回错误代码请看首页的错误代码描述