文档
测试

按分类查价格

GET
http://localhost:8002/price/selectPriceByClassify?shop_id=36&classify_id=1

接口描述

店铺的价格表的分类查询

请求参数

参数名
类型
描述
必填
shop_id
number
示例:36
必填
classify_id
number
示例:1
必填

响应参数

参数名
类型
描述
必填
code
number
示例:200
必填
msg
string
示例:
必填
data
array
数据列表
必填
price_id
number
示例:7
必填
item
string
示例:托尼888
必填
price
number
示例:60
必填
classify_id
number
示例:1
必填
shop_id
number
示例:36
必填
other
object
示例:null
必填

说明 / 示例

{ "code": 200, "msg": "", "data": [ { "price_id": 7, "item": "托尼888", "price": 60, "classify_id": 1, "shop_id": 36 }, { "price_id": 12, "item": "技术总监", "price": 100, "classify_id": 1, "shop_id": 36 }, { "price_id": 14, "item": "技术小白", "price": 10, "classify_id": 1, "shop_id": 36 } ], "other": null }