- 新增 Comment/CommentMention 模型,Post 新增 CommentsCount 冗余计数器 - 新增 CommentRepo(CRUD + @搜索 LV3+ + 回复统计 + 文章作者查询) - 新增 CommentService(发表/回复/删除/@解析/通知 NotifyComment/NotifyCommentReply) - 新增 CommentController(6 个 API 端点),commentUseCase ISP 接口 - 新增评论路由(公开读取 + 需登录写入),依赖注入,错误哨兵,数据库迁移 - 前端评论区 HTML/CSS/JS:分页加载、回复折叠展开、内联回复表单、@提及自动补全
45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
package model
|
|
|
|
// 消息/通知类型常量
|
|
const (
|
|
NotifyAuditApproved = "audit_approved"
|
|
NotifyAuditRejected = "audit_rejected"
|
|
NotifyPostApproved = "post_approved"
|
|
NotifyPostRejected = "post_rejected"
|
|
NotifyLevelUp = "level_up"
|
|
NotifyComment = "comment"
|
|
NotifyCommentReply = "comment_reply"
|
|
)
|
|
|
|
// Notification 消息/通知模型
|
|
type Notification struct {
|
|
BaseModel
|
|
|
|
UserID uint `gorm:"index:idx_user_read,priority:1;not null" json:"user_id"`
|
|
NotifyType string `gorm:"type:varchar(30);index;not null" json:"notify_type"`
|
|
Title string `gorm:"type:varchar(200);not null" json:"title"`
|
|
Content string `gorm:"type:text" json:"content"`
|
|
IsRead bool `gorm:"index:idx_user_read,priority:2;default:false;not null" json:"is_read"`
|
|
RelatedID *uint `gorm:"default:null" json:"related_id,omitempty"` // 关联业务 ID
|
|
}
|
|
|
|
// NotifyTypeNames 通知类型 → 中文名
|
|
var NotifyTypeNames = map[string]string{
|
|
NotifyAuditApproved: "资料审核",
|
|
NotifyAuditRejected: "资料审核",
|
|
NotifyPostApproved: "稿件审核",
|
|
NotifyPostRejected: "稿件审核",
|
|
NotifyLevelUp: "等级提升",
|
|
NotifyComment: "评论",
|
|
NotifyCommentReply: "回复",
|
|
}
|
|
|
|
// NotificationListResult 消息列表查询结果
|
|
type NotificationListResult struct {
|
|
Items []Notification `json:"items"`
|
|
Total int64 `json:"total"`
|
|
Page int `json:"page"`
|
|
TotalPages int `json:"total_pages"`
|
|
Unread int64 `json:"unread"`
|
|
}
|