POST api/client/goods/list
【客户端】【商品管理】商品列表
Request Information
URI Parameters
None.
Body Parameters
UserGetGoodsListRequst| Name | Description | Type | Additional information |
|---|---|---|---|
| recommend | boolean |
None. |
|
| category_id | string |
None. |
|
| skip |
当前页数 |
integer |
None. |
| limit |
一页显示几条数据 |
integer |
None. |
| key |
关键字 |
string |
None. |
| order |
排序字段 |
string |
None. |
| desc |
排序方式 可选:asc/desc |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"recommend": true,
"category_id": "sample string 2",
"skip": 3,
"limit": 4,
"key": "sample string 5",
"order": "sample string 6",
"desc": "desc"
}
Response Information
Resource Description
【客户端】【商品管理】商品列表
MyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| msg | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2",
"data": {}
}