经营模式列表.md 905 Bytes

1、查询经营模式列表

查询经营模式列表(/SellerProductController/getSellType)

请求参数

参数名称 参数类型 可否为空 示例 备注
brandId int 22 品牌的ID号
shopsId int 22 店铺的ID号

注意,通用的头部没有列出。

请求示例 http://192.168.102.202:8088/platform/SellerProductController/getSellType

请求样例数据

{"shopsId" : 792, "brandId": 248}

正常返回:
{
    "code": 200,
    "data": [
        {
            "id": 2,
            "text": "代销"
        },
        {
            "id": 3,
            "text": "JIT"
        }
    ],
    "md5": "6ac76e5ec1d5318fdcd117312cf24f1c",
    "message": "查询成功."
}

异常返回:

{
    "code": 500,
    "data": [],
    "md5": "8b233b3ba501d3563be331aa58d0fe0d",
    "message": "查询失败."
}