plustarcategory
2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
plustar分类管理接口服务定义
---------------------
## plustar分类列表查询
> 接口名: '/guang/plustarcategory/getList'
### 入参
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|status|int|1|开启状态|
### 返回
``` json
{
"code":200,
"message":"操作成功",
"data": {
"list": [
{
"id": 4, //分类id
"categoryName": "设计新潮", //分类名称
"contentCode":"b714c25f503ab4e6bc143a42d1404cbb",//资源位码(head)
"contentCodeFoot":"f5d0b31f4ce77e6f21f47215a88ed22d",//资源位码(foot)
"createTime": 1447929410, //创建时间
"status": 1 //状态
}
]
}
}
```
## 添加plustar分类接口
> 接口名: '/guang/plustarcategory/addCategory'
### 入参
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|categoryName|String|潮流原创|分类名称|
|contentCode|String|b714c25f503ab4e6bc143a42d1|资源位码(head)|
|contentCodeFoot|String|f5d0b31f4ce77e6f21f4721|资源位码(foot)|
---------------------
### 返回
``` json
{
"code":200,
"message":"添加成功!"
}
```
## 编辑plustar分类接口
> 接口名: '/guang/plustarcategory/updateCategory'
### 入参
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|id|int|5|分类ID|
|categoryName|String|潮流原创|分类名称|
|contentCode|String|b714c25f503ab4e6bc143a42d1|资源位码(head)|
|contentCodeFoot|String|f5d0b31f4ce77e6f21f4721|资源位码(foot)|
---------------------
### 返回
``` json
{
"code":200,
"message":"修改成功!"
}
```
## 编辑时plustar分类详情接口
> 接口名: '/guang/plustarcategory/getDetail'
### 入参
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|id|int|4|分类id|
---------------------
### 返回
``` json
{
"code":200,
"message":"操作成功",
"data": {
"id": 4, //分类id
"categoryName": "设计新潮", //分类名称
"contentCode": "b714c25f503ab4e6bc143a42d1404cbb", //资源位码(head)
"contentCodeFoot":"f5d0b31f4ce77e6f21f47215a88ed22d",//资源位码(foot)
"createTime": 1447929410, //创建时间
"status": 1 //状态
}
}
```
## 删除plustar分类接口
> 接口名: '/guang/plustarcategory/delCategory'
### 入参
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|id|int|43|分类id|
---------------------
### 返回
``` json
{
"code":200,
"message":"删除成功!"
}
```
```