POST api/DLndrc/GetStock

获取门店库存接口

请求的信息

URI参数

None.

Body参数

DLndrcStockInfo
名称描述类型其它信息
pageSize

一页所含条数 最大500 默认200

integer

None.

pageIndex

页码

integer

None.

Barcode

商品编码

string

None.

BranchID

店号

string

None.

请求格式

application/json, text/json

Sample:
{
  "pageSize": 1,
  "pageIndex": 2,
  "barcode": "sample string 3",
  "branchID": "sample string 4"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

响应信息

资源描述

CustomJsonResultOfDLndrcStockModel
名称描述类型其它信息
Content

DLndrcStockModel

None.

响应格式

application/json, text/json

Sample:
{
  "content": {
    "$id": "2",
    "pageSize": 1,
    "pageIndex": 2,
    "totalPage": 3,
    "totalRecord": 4,
    "list": [
      {
        "$id": "3",
        "barcode": "sample string 1",
        "branchID": "sample string 2",
        "quantity": 3.0
      },
      {
        "$ref": "3"
      },
      {
        "$ref": "3"
      }
    ],
    "customStatus": 10,
    "customMessage": "sample string 5"
  }
}