GET api/Goods?goodsNM={goodsNM}&pageIndex={pageIndex}&pageSize={pageSize}

商品列表.模糊.按页

请求信息

URI 参数

参数参数描述类型其它信息
goodsNM

小组

string

Required

pageIndex

页数

integer

Required

pageSize

页长度

integer

Required

Body 参数

None.

响应信息

响应描述

商品列表

Collection of cGoods
参数参数描述类型其它信息
GoodsID

string

None.

GoodsNM

string

None.

SPrice

decimal number

None.

GoodsUrl

string

None.

响应格式

application/json, text/json

Sample:
[
  {
    "_GoodsID": "sample string 1",
    "_GoodsNM": "sample string 2",
    "_SPrice": 3.0,
    "_GoodsUrl": "sample string 4"
  },
  {
    "_GoodsID": "sample string 1",
    "_GoodsNM": "sample string 2",
    "_SPrice": 3.0,
    "_GoodsUrl": "sample string 4"
  }
]

text/html

Sample:
[{"_GoodsID":"sample string 1","_GoodsNM":"sample string 2","_SPrice":3.0,"_GoodsUrl":"sample string 4"},{"_GoodsID":"sample string 1","_GoodsNM":"sample string 2","_SPrice":3.0,"_GoodsUrl":"sample string 4"}]