adminProduct - TimYi/FengHuang GitHub Wiki

请求URL

http://101.200.229.135:8080/api/admin/product

字段说明

字段分为显示和保存两部分。
保存字段会有一些关联实体的id,显示字段会把一些关联实体的内容扁平化显示。

显示字段

id:id
name:产品名称
ordernum:排序序号
materials:素材 {
    id
    ordernum
    pic:素材图片 {
        id
        url
    }
}
brand:品牌信息 {
    id
    name
    logo {
        id
        url
    }
}

添加操作参数

id:id
name:产品名称
brandId:品牌id

修改操作参数

id:id
name:品牌名称
brandId:品牌id

返回示例

{
"result": {
    "totalCount": 1,
    "totalPages": 1,
    "page": 1,
    "size": 8,
    "result": [
        {
            "id": "8aac48364e720e7e014e721286310001",
            "name": "地面地砖",
            "ordernum": 0,
            "materials": [
                {
                    "id": "8aac48364e720e7e014e7215fb170002",
                    "ordernum": 0,
                    "pic": null,
                    "description": null,
                    "product": {
                        "id": "8aac48364e720e7e014e721286310001",
                        "name": "地面地砖",
                        "logo": null
                    }
                }
            ],
            "brand": {
                "id": "8aac48364e720e7e014e720ea4dd0000",
                "name": "东鹏",
                "logo": {
                    "id": "8aac48364e722cd7014e735866200000",
                    "url": "http://101.200.229.135/media/77c2aa93c42c48aa80bf098dc2f9d01e.gif",
                    "fileSize": 3674
                }
            }
        }
    ]
},
"status": "OK"
}

按照上级品牌获取

url:http://101.200.229.135:8080/api/admin/product/bybrand/{brandId}
method:GET
参数:路径参数,brandId
返回:pagedList

排序接口

url:http://101.200.229.135:8080/api/admin/product/order
method:POST
参数:ids:[id1,id2]形式的id列表