Showing
1 changed file
with
19 additions
and
21 deletions
@@ -16,9 +16,8 @@ | @@ -16,9 +16,8 @@ | ||
16 | ------------------------- | 16 | ------------------------- |
17 | |属性名称|类型|例子|说明| | 17 | |属性名称|类型|例子|说明| |
18 | |--------|----|----|----| | 18 | |--------|----|----|----| |
19 | -|title|String|补开发票|帮助标题| | ||
20 | -|categoryId|int|13|分类ID| | ||
21 | -|content|String|如订单未选择发票需要补寄,请您联系有货客服,我们可以为您补开三个自然月内订单的发票,但是需运费到付。|帮助内容| | 19 | +|categoryName|String|订单问题|分类名称| |
20 | +|parentId|int|0|父分类ID| | ||
22 | |platform|String|iphone,android|显示平台| | 21 | |platform|String|iphone,android|显示平台| |
23 | --------------------- | 22 | --------------------- |
24 | 23 | ||
@@ -52,27 +51,25 @@ or | @@ -52,27 +51,25 @@ or | ||
52 | ``` | 51 | ``` |
53 | 52 | ||
54 | 53 | ||
55 | -## 修改帮助内容 | 54 | +## 修改帮助分类 |
56 | 55 | ||
57 | -> 接口名:`/HelpContentRest/updateHelpContent` | 56 | +> 接口名:`/HelpCategoryRest/updateHelpCategory` |
58 | 57 | ||
59 | ### 入参 | 58 | ### 入参 |
60 | ``` json | 59 | ``` json |
61 | { | 60 | { |
62 | - "id":44, | ||
63 | - "title":"补开发票", | ||
64 | - "categoryId":13, | ||
65 | - "platform":"iphone,android,h5", | ||
66 | - "content":"如订单未选择发票需要补寄,请您联系有货客服,我们可以为您补开三个自然月内订单的发票,但是需运费到付。" | 61 | + "id":46, |
62 | + "categoryName":"订单问题2期项目", | ||
63 | + "parentId":0, | ||
64 | + "platform":"iphone,android" | ||
67 | } | 65 | } |
68 | ``` | 66 | ``` |
69 | ------------------------- | 67 | ------------------------- |
70 | |属性名称|类型|例子|说明| | 68 | |属性名称|类型|例子|说明| |
71 | |--------|----|----|----| | 69 | |--------|----|----|----| |
72 | -|id|int|44|帮助内容记录ID| | ||
73 | -|title|String|补开发票|帮助标题| | ||
74 | -|categoryId|int|13|分类ID| | ||
75 | -|content|String|如订单未选择发票需要补寄,请您联系有货客服,我们可以为您补开三个自然月内订单的发票,但是需运费到付。|帮助内容| | 70 | +|id|int|46|帮助分类记录ID| |
71 | +|categoryName|String|订单问题|分类名称| | ||
72 | +|parentId|int|0|父分类ID| | ||
76 | |platform|String|iphone,android|显示平台| | 73 | |platform|String|iphone,android|显示平台| |
77 | --------------------- | 74 | --------------------- |
78 | 75 | ||
@@ -81,31 +78,32 @@ or | @@ -81,31 +78,32 @@ or | ||
81 | ``` json | 78 | ``` json |
82 | { | 79 | { |
83 | "code": 200, | 80 | "code": 200, |
84 | - "message": "Update Help Content Success" | 81 | + "message": "Update Help Category Success" |
85 | } | 82 | } |
83 | +or | ||
86 | { | 84 | { |
87 | "code":400 | 85 | "code":400 |
88 | "message":"Id is null" | 86 | "message":"Id is null" |
89 | } | 87 | } |
88 | +or | ||
90 | { | 89 | { |
91 | "code":400 | 90 | "code":400 |
92 | - "message":"帮助标题不能为空" | 91 | + "message":"分类名称不能为空" |
93 | } | 92 | } |
93 | +or | ||
94 | { | 94 | { |
95 | "code":400 | 95 | "code":400 |
96 | "message":"分类ID无效" | 96 | "message":"分类ID无效" |
97 | } | 97 | } |
98 | -{ | ||
99 | - "code":400 | ||
100 | - "message":"内容无效" | ||
101 | -} | 98 | +or |
102 | { | 99 | { |
103 | "code":400 | 100 | "code":400 |
104 | "message":"显示平台无效" | 101 | "message":"显示平台无效" |
105 | } | 102 | } |
103 | +or | ||
106 | { | 104 | { |
107 | "code":500 | 105 | "code":500 |
108 | - "message":"Upodate Help Content Fail" | 106 | + "message":"Update Help Category Fail" |
109 | } | 107 | } |
110 | ``` | 108 | ``` |
111 | 109 |
-
Please register or login to post a comment