POST api/wifibb/query/list

查询商品列表

Request Information

URI Parameters

None.

Body Parameters

Productprame
NameDescriptionTypeAdditional information
lang

语言

string

None.

SupplierID

供应商ID(Wifibb提供)(非供应商Supplier=0)

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "lang": "sample string 1",
  "SupplierID": 2
}

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 'Productprame'.

Response Information

Resource Description

查询商品列表

ReturnResultOfGetProductShowContract
NameDescriptionTypeAdditional information
data

GetProductShowContract

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "ProuctshowList": [
      {
        "ProductID": 1,
        "PicPath": "sample string 2",
        "CountryName": "sample string 3",
        "UnitCost": 4.0
      },
      {
        "ProductID": 1,
        "PicPath": "sample string 2",
        "CountryName": "sample string 3",
        "UnitCost": 4.0
      }
    ]
  },
  "code": 1,
  "message": "sample string 2"
}