約定
請求數(shù)據(jù)成功:
{
"flag": true,
"code": 200,
"message": "查詢成功",
"data": null
}
請求數(shù)據(jù)失敗:(出現(xiàn)異常)
{"flag":false,"code":20001,"message":"當(dāng)前系統(tǒng)繁忙,請您稍后重試","data":null}
品牌管理
1 . 根據(jù)id查詢
請求方式:get
請求參數(shù):id
返回結(jié)果:
{
"flag": true,
"code": 200,
"message": "查詢成功",
"data": {
"id": 8557,
"name": "華為",
"image": "http://img10.360buyimg.com/popshop/jfs/t5662/36/8888655583/7806/1c629c01/598033b4Nd6055897.jpg",
"letter": "H",
"seq": null
}
}
2. 分頁查詢所有
請求方式:get
請求參數(shù):row :顯示行數(shù) ,CurrentPage :當(dāng)前頁碼
返回結(jié)果:
{
"total": 174,
"rows": [
{
"id": 21011,
"name": "中興",
"image": "http://img13.360buyimg.com/popshop/jfs/t2551/271/1317227522/3284/7419745e/56a855a3Ne38ee719.jpg",
"letter": "Z",
"seq": null
},
{
"id": 21360,
"name": "beats",
"image": "",
"letter": "b",
"seq": null
},
{
"id": 21553,
"name": "本易",
"image": "",
"letter": "B",
"seq": null
},
{
"id": 22261,
"name": "tonino lamborghini",
"image": "",
"letter": "T",
"seq": null
},
{
"id": 22575,
"name": "布魯雅爾",
"image": "",
"letter": "B",
"seq": null
}
]
}
3. 更新品牌
請求方式:put
請求參數(shù): Json對象
{"id":9527,
"name":"潔杰",
"image":"http://n.sinaimg.cn/transform/20150605/GeoL-crvvrak2749719.jpg",
"letter":"J",
"seq":2
}
返回結(jié)果:
{
"flag": true,
"code": 20000,
"message": "更新成功",
"data": null
}
4. delete品牌
請求方式:delete
請求參數(shù): id
返回結(jié)果:
{
"flag": true,
"code": 20000,
"message": "刪除成功",
"data": null
}
5. 新增品牌
請求方式:post
請求參數(shù): Json對象
返回結(jié)果:
{
"flag": true,
"code": 20000,
"message": "新增成功",
"data": null
}