Authored by liqingzhong

添加获取单个的接口文档

... ... @@ -57,6 +57,33 @@
}
```
# 获取单个模板接口
> 接口名:`activityTemplate/getTemplate`
----------------------------------
|属性名称|类型|例子|说明|是否必填|
|--------|----|----|----|--------|
|id|integer|1|主键|是|
----------------------------------
### 返回
``` json
{
"code": 200,
"data": {
"createTime": 1456112240,
"id": 33,
"image": "图片地址",
"shareId": 0,
"title": "模板标题",
"url": "模板地址"
},
"message": "Temp Info"
}
```
# 更新模板接口
> 接口名:`activityTemplate/updateTeplate`
... ...
... ... @@ -62,6 +62,36 @@
}
```
# 根据 ID 获取标签接口
### 入参
----------------------------------
|属性名称|类型|例子|说明|是否必填|
|--------|----|----|----|--------|
|id|integer|33|主键|是|
----------------------------------
### 返回
``` json
{
"code": 200,
"data": {
"categoryId": "",
"channel": "1",
"createTime": 1442310861,
"id": 33,
"orderBy": 0,
"platform": "web",
"status": 0,
"tagName": "分类2",
"updateTime": 0
},
"message": "Tag Info"
}
```
# 更新标签接口
> 接口名:`hotRankTag/updateTag`
... ...
... ... @@ -12,6 +12,7 @@
|--------|----|----|----|--------|
|title|string|新人|标题,模糊查询|否|
|position|integer|1|位置|否|
|showChannel|integer|1|频道, 当位置为首页(2)时,可以选择 1.男首、2.女首、3.潮童、4.创意生活|否|
----------------------------------
### 返回
... ... @@ -27,6 +28,7 @@
"id": 15,
"img": "",
"position": 2,
"showChannels": "1,2,3",
"startTime": 1451298061,
"status": 1,
"title": "新人专享",
... ... @@ -53,6 +55,7 @@
|--------|----|----|----|--------|
|title|string|新人|标题,模糊查询|是|
|position|integer|1|位置|是|
|showChannels|integer[]|[1,2]|首页频道|否|
|url|string|http://test.com|链接|否|
|img|string|http://test.jpg|图片链接|否|
|startTime|integer|1450843526|开始时间|否|
... ... @@ -91,6 +94,7 @@
"id": 22,
"img": "http://img.cn.png",
"position": 2,
"showChannels": "1,2,3",
"startTime": 1450843526,
"status": 0,
"title": "这是一个测试",
... ... @@ -112,6 +116,7 @@
|id|integer|22|主键|是|
|title|string|新人|标题,模糊查询|是|
|position|integer|1|位置|是|
|showChannels|integer[]|[1,2]|首页频道|否|
|url|string|http://test.com|链接|否|
|img|string|http://test.jpg|图片链接|否|
|startTime|integer|1450843526|开始时间|否|
... ...