POST ActionApi/T_Inventory/GetInventory

库存查询(外部调用)

Request Information

URI Parameters

None.

Body Parameters

QueryModel
NameDescriptionTypeAdditional information
StoreCode

门店编码

string

None.

ProductCodeNc

商品NC码

string

None.

ProductFullName

商品名称

string

None.

DictName

门店仓名称

string

None.

BrandName

品牌名称

string

None.

Size

每页记录数

integer

Required

PageIndex

分页页数

integer

Required

ProductCode

条形码

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StoreCode": "sample string 1",
  "ProductCodeNc": "sample string 2",
  "ProductFullName": "sample string 3",
  "DictName": "sample string 4",
  "BrandName": "sample string 5",
  "Size": 6,
  "PageIndex": 7,
  "ProductCode": "sample string 8"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'QueryModel'.

Response Information

Resource Description

库存查询(外部调用)

ResponseModel
NameDescriptionTypeAdditional information
Data

数据

Object

None.

Total

总数

integer

None.

Success

是否成功

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {},
  "Total": 2,
  "Success": true
}