- 新增 Report 数据模型、DTO、Repository、Service 层 - 实现用户端举报 API (POST /api/v1/reports) - 实现管理端举报管理 API (列表、详情、处理、批量处理) - 添加举报自动隐藏机制(达到阈值自动隐藏内容) - 集成系统通知(举报处理结果通知) - 更新路由和 Wire 依赖注入配置 Made-with: Cursor
7 lines
228 B
Go
7 lines
228 B
Go
package config
|
|
|
|
// ReportConfig 举报配置
|
|
type ReportConfig struct {
|
|
// AutoHideThreshold 自动隐藏阈值(举报次数达到此数值时自动隐藏内容)
|
|
AutoHideThreshold int `mapstructure:"auto_hide_threshold"`
|
|
} |