Authored by liqingzhong

店铺装修新增接口

... ... @@ -382,4 +382,173 @@
"message": "操作成功."
}
```
\ No newline at end of file
```
## 最新上架商品
> `/ShopsDecoratorRest/findNewProductList`
### 入参
| 参数名 | 必填 | 类型 | 示例值 | 描述 |
|---------|------|------|--------|----------|
| shopsId | Y | int | 2 | 店铺 ID |
| size | N | int | 20 | 默认是10 |
### 返回
```json
{
"code": 200,
"data": {
"code": 200,
"data": {
"page": 1,
"page_total": 17768,
"product_list": [
{
"brand_domain": "mrkt",
"brand_id": 89,
"brand_name": "mrkt 马克兔",
"cn_alphabet": "MRKT YiFangKongYiJuBiJiBen",
"default_images": "/2011/06/23/04/01fcb8efc1fea50c61fe71fab3cae82028.jpg",
"edit_time": 1458791369,
"gender": "3",
"goods_list": [
{
"color_code": "333333",
"color_id": "2",
"color_name": "黑",
"color_value": "",
"cover_1": "",
"cover_2": "",
"goods_id": "18",
"images_url": "/2011/06/23/04/01fcb8efc1fea50c61fe71fab3cae82028.jpg",
"is_default": "N",
"product_skc": "18",
"status": "1"
}
],
"is_advance": "N",
"is_discount": "Y",
"is_limited": "N",
"is_new": "Y",
"is_outlets": 2,
"is_promotion": 0,
"is_soon_sold_out": "Y",
"is_special": "N",
"market_price": 72,
"max_sort_id": 10,
"middle_sort_id": 101,
"product_id": 16,
"product_name": "MRKT “房空椅”笔记本",
"product_skn": 50001804,
"sales_num": 12,
"sales_phrase": "",
"sales_price": 36,
"shelve_time": 1458791369,
"small_sort_id": 111,
"status": 1,
"stock_number": 1,
"storage_num": 1,
"vip1_price": 0,
"vip2_price": 0,
"vip3_price": 0,
"vip_discount_type": 3,
"vip_price": 0
}
],
"total": 53303
},
"message": "Search List."
},
"md5": "d6291c8373c4a1966e08ce8dab5211b5",
"message": "操作成功"
}
```
## 畅销商品
> `/ShopsDecoratorRest/findHotProductList`
### 入参
| 参数名 | 必填 | 类型 | 示例值 | 描述 |
|---------|------|------|--------|----------|
| shopsId | Y | int | 2 | 店铺 ID |
| size | N | int | 20 | 默认是10 |
### 返回
```json
{
"code": 200,
"data": {
"code": 200,
"data": {
"page": 1,
"page_total": 17768,
"product_list": [
{
"brand_domain": "mrkt",
"brand_id": 89,
"brand_name": "mrkt 马克兔",
"cn_alphabet": "MRKT YiFangKongYiJuBiJiBen",
"default_images": "/2011/06/23/04/01fcb8efc1fea50c61fe71fab3cae82028.jpg",
"edit_time": 1458791369,
"gender": "3",
"goods_list": [
{
"color_code": "333333",
"color_id": "2",
"color_name": "黑",
"color_value": "",
"cover_1": "",
"cover_2": "",
"goods_id": "18",
"images_url": "/2011/06/23/04/01fcb8efc1fea50c61fe71fab3cae82028.jpg",
"is_default": "N",
"product_skc": "18",
"status": "1"
}
],
"is_advance": "N",
"is_discount": "Y",
"is_limited": "N",
"is_new": "Y",
"is_outlets": 2,
"is_promotion": 0,
"is_soon_sold_out": "Y",
"is_special": "N",
"market_price": 72,
"max_sort_id": 10,
"middle_sort_id": 101,
"product_id": 16,
"product_name": "MRKT “房空椅”笔记本",
"product_skn": 50001804,
"sales_num": 12,
"sales_phrase": "",
"sales_price": 36,
"shelve_time": 1458791369,
"small_sort_id": 111,
"status": 1,
"stock_number": 1,
"storage_num": 1,
"vip1_price": 0,
"vip2_price": 0,
"vip3_price": 0,
"vip_discount_type": 3,
"vip_price": 0
}
],
"total": 53303
},
"message": "Search List."
},
"md5": "d6291c8373c4a1966e08ce8dab5211b5",
"message": "操作成功"
}
```
... ...