Authored by zhaoqi

全球购&yoho商品产品索引转化 接口文档

# 全球购和yoho商品适配 接口文档
目前全球购和yoho商品在搜索引擎中的索引是不同的,分别是tplproduct 和productindex。由于productindex的字段远远多于tplproduct的字段,所以整个融合过程会分为几个阶段,循序渐进来完成2个商品共用一个索引。
### version 1.0.0
## 全球购转yoho商品
#### 接口地址
#### 请求参数
#### 接口返回
```json
{
"code": 130000,
"data": [
{
"basePinRatio": 0,
"brandId": 12,
"breakingRate": 0,
"colorIds": "1,2,12",
"discountScore": 0,
"editTime": 1442903089,
"gender": "2",
"islimited": "2",
"marketPrice": 100,
"maxSortId": 1,
"middleSortId": 19,
"productName": "HARE",
"productSkn": 1231279,
"salesPrice": 0,
"shelveTime": 0,
"sizeIds": "/2015/09/14/03/02e8f3a7c1759c46ce73f063520d1b8cb4.jpg",
"smallSortId": 122,
"status": 6
}
]
}
```
## yoho商品转全球购
#### 接口地址
#### 接口参数
| Param Name | Param Type | Required | Param Value | Desc |
| brandIds | List<Integer> | true | [15,20] | 需要转换的brandId |
参数示例:
[15,20,716]
#### 接口返回
```json
{
"code": 130000,
"data": [
{
"autoShelf": 0,
"brandId": 716,
"currencyId": "5",
"gender": "2",
"goodsPrice": "398",
"isLimited": "N",
"productName": "有瘾 原创设计 翻领格子长款毛呢外套大衣",
"productSkn": 51187789,
"shelfTime": "1451552504",
"siteId": 0,
"sortFour": 85,
"sortOne": 0,
"sortThree": 13,
"sortTwo": 3,
"status": 1,
"stockStatus": 0,
"tagPrice": "1088",
"updateTime": "1451552504",
"urlStatus": 0
}
]
}
```
... ...