文档
测试

历史反馈记录

POST
{{url_logic}}/feedback/list

接口描述

此接口必须登录

请求参数

参数名
类型
描述
必填
timeStart
int
开始时间戳
必填
timeEnd
int
结束时间戳
必填
page
int
第几页
必填
num
int
每页显示几条数据
必填

响应数据

```json { "errorCode": 0, "msgType": 1, "result": { "list": [ { "accountId": 96516, "content": "反馈内容2", // 反馈内容 "id": 2, "name": "羽之飞测试", "time": 1611816804554, // 时间 "type": 4 }, { "accountId": 96516, "content": "反馈内容", "id": 1, "name": "羽之飞测试", "time": 1611816791645, "type": 4 } ], "total": 2 } } ```