POST api/GoodsStandard/GetGoodsList
获取入仓标准商品列表
Request Information
URI Parameters
None.
Body Parameters
请求数据
GoodsStandardPageListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| cat_id |
分类Id |
string |
None. |
| brand_id |
品牌Id |
string |
None. |
| goods_sn |
订货号 |
string |
None. |
| goods_name |
商品名称 |
string |
None. |
| start_price |
商品价格 |
string |
None. |
| end_price |
商品价格 |
string |
None. |
| page |
页码 |
integer |
None. |
| page_size |
每页显示条数 |
integer |
None. |
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"cat_id": "sample string 1",
"brand_id": "sample string 2",
"goods_sn": "sample string 3",
"goods_name": "sample string 4",
"start_price": "sample string 5",
"end_price": "sample string 6",
"page": 7,
"page_size": 8,
"user_id": "sample string 9",
"token": "sample string 10"
}
application/xml, text/xml
Sample:
<GoodsStandardPageListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model"> <token>sample string 10</token> <user_id>sample string 9</user_id> <page>7</page> <page_size>8</page_size> <brand_id>sample string 2</brand_id> <cat_id>sample string 1</cat_id> <end_price>sample string 6</end_price> <goods_name>sample string 4</goods_name> <goods_sn>sample string 3</goods_sn> <start_price>sample string 5</start_price> </GoodsStandardPageListRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
获取入仓标准商品列表
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |