Authored by zhengwen.ge

update

... ... @@ -1258,4 +1258,38 @@ code为200即为成功,否则是失败。
"md5": "5e9e33f14cfb223f8833008c9c5b27fe",
"message": "Category Product List."
}
```
\ No newline at end of file
```
## 32、添加反馈 ##
#### 请求参数
| 参数名称 | 参数类型 | 长度 | 可否为空 | 示例 | 默认值 | 备注 |
|:-------| -----:|-----:|-----:|-----:|-----:|----:|
|feedback_id|int|10|否||||
|question_id|int|20|否||||
|solution|string|100|是||||
|answer|string|200|是|||solution和answer不能同时为空|
|uid|int|20|是||0|用户id|
#### 返回错误
|错误code|错误提示|
|:-------| -----:|
|400|Question Id is null |
|401|Feedback Id is null|
|402|Answer is null|
注意,通用的头部没有列出。
http://127.0.0.1:8080/gateway/?method=open.feedback.submit&question_id=2&feedback_id=4&solution=2
### 响应
code为200即为成功,否则是失败。
用户响应JSON格式如下所示:
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"result": 1
},
"md5": "180dad439fb2b74b6731a3b70cf6fca0",
"message": "success"
}
```
... ...