0e42e96ddb
新增 admin 模块接口文档(auth login/me、admins CRUD、audit-logs、feedback 处理、stats 概览、user coins/detail/status、wallet 流水、withdraw 对账/刷新/列表) + admin_user/admin_audit_log 两张表文档,更新 api/database README 索引。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: OuYingJun1024 <1034284404@qq.com> Reviewed-on: #12 Co-authored-by: ouzhou <ouzhou@wonderable.ai> Co-committed-by: ouzhou <ouzhou@wonderable.ai>
1.7 KiB
1.7 KiB
GET /admin/api/feedbacks — 反馈工单列表(游标分页)
所属:Admin·反馈 组(前缀
/admin/api/feedbacks) | 鉴权:Bearer admin_token(角色:任意已登录管理员,无require_role,仅get_current_admin) | ← 返回 API 索引
入参(query)
| 字段 | 类型 | 必填 | 默认 | 说明 |
|---|---|---|---|---|
status |
string | ❌ | null | 反馈状态,精确匹配:new(待处理) / handled(已处理);传空/不传则不筛 |
user_id |
int | ❌ | null | 按提交用户 id 精确筛 |
limit |
int | ❌ | 20 | 1–100 |
cursor |
int | ❌ | null | 上一页 next_cursor(按 feedback id 倒序,查 id < cursor) |
出参
响应 200:{ items: FeedbackOut[], next_cursor: int|null }(next_cursor=null 表示末页)
FeedbackOut
| 字段 | 类型 | 说明 |
|---|---|---|
id |
int | 反馈 id |
user_id |
int | 提交用户 id |
content |
string | 反馈内容 |
contact |
string | 联系方式(微信/QQ/手机,便于回访) |
images |
string[] | null | 截图相对路径列表(如 ["/media/feedback/u1_ab12.jpg"]),无图为 null |
status |
string | 反馈状态:new(待处理) / handled(已处理) |
created_at |
datetime | 提交时间(UTC) |
错误码
401未带/无效/过期 admin token、管理员被禁用(头带WWW-Authenticate: Bearer)422limit超出 1–100 范围 / 字段类型不合法
说明
- 游标分页约定:结果按 feedback
id倒序;cursor传上一页返回的next_cursor;next_cursor=null即末页。 status/user_id均为精确匹配,可叠加。- 关联表 feedback;截图为相对路径,经
GET /media/feedback/<file>静态读。