POST api/DLndrc/GetProduct
获取门店商品接口
请求的信息
URI参数
None.
Body参数
DLndrcProductInfo名称 | 描述 | 类型 | 其它信息 |
---|---|---|---|
pageSize |
一页所含条数 最大500 默认200 |
integer |
None. |
pageIndex |
页码 |
integer |
None. |
BranchID |
店号 |
string |
None. |
Barcode |
商品编码 |
string |
None. |
Name |
商品名称 |
string |
None. |
Core |
国际条码 |
string |
None. |
请求格式
application/json, text/json
Sample:
{ "pageSize": 1, "pageIndex": 2, "branchID": "sample string 3", "barcode": "sample string 4", "name": "sample string 5", "core": "sample string 6" }
application/x-www-form-urlencoded
Sample:
Sample not available.
响应信息
资源描述
CustomJsonResultOfDLndrcProductModel名称 | 描述 | 类型 | 其它信息 |
---|---|---|---|
Content | DLndrcProductModel |
None. |
响应格式
application/json, text/json
Sample:
{ "content": { "$id": "2", "pageSize": 1, "pageIndex": 2, "totalPage": 3, "totalRecord": 4, "list": [ { "$id": "3", "branchID": "sample string 1", "barcode": "sample string 2", "commonName": "sample string 3", "name": "sample string 4", "code": "sample string 5", "spec": "sample string 6", "unit": "sample string 7", "price": 8.0, "class": "sample string 9", "approvalNo": "sample string 10", "producers": "sample string 11" }, { "$ref": "3" }, { "$ref": "3" } ], "customStatus": 10, "customMessage": "sample string 5" } }