- 新增域能完整分层:EnergyLog/PostEnergizeLog/DailyExpSummary 模型、EnergyRepo、EnergyService、EnergyController/AdminEnergyController - 支持签到获取域能(+1)、帖子赋能(-1/-2)/被赋能(+1/+2)、改名扣能(-6)/退款(+6)、删帖扣能(-2) - 赋能单人单帖上限20域能,每日赋能获得经验上限50 - 管理员支持批量调整域能(owner)和查询域能日志(admin) - LV0用户(exp<1)禁止签到和发帖,余额为负可签到/被赋能/删帖但不能赋能/改名 - 首次改名免费(通过HasCompletedTask判重),改名扣能在提交审核时执行 - 移除导航栏手动签到按钮,签到融入域能系统(自动签到) - 新增个人中心域能TAB展示余额和流水日志(近7天) - 新增帖子详情页赋能按钮(轻赋/重赋) - 管理后台新增域能管理和域能日志页面
42 lines
1.9 KiB
Go
42 lines
1.9 KiB
Go
package model
|
||
|
||
import (
|
||
"time"
|
||
|
||
"gorm.io/gorm"
|
||
)
|
||
|
||
// Post 帖子/文章模型
|
||
type Post struct {
|
||
ID uint `gorm:"primarykey" json:"id"`
|
||
Title string `gorm:"type:varchar(200);not null" json:"title"`
|
||
Body string `gorm:"type:text" json:"body"` // Markdown content
|
||
Excerpt string `gorm:"type:varchar(500)" json:"excerpt"` // plain text summary for list
|
||
UserID uint `gorm:"index;not null" json:"user_id"`
|
||
Status string `gorm:"type:varchar(20);index;default:draft;not null" json:"status"`
|
||
IsLocked bool `gorm:"default:false" json:"is_locked"`
|
||
LockReason string `gorm:"type:varchar(500);default:''" json:"lock_reason,omitempty"`
|
||
PendingTitle string `gorm:"type:varchar(200);default:''" json:"pending_title,omitempty"`
|
||
PendingBody string `gorm:"type:text" json:"pending_body,omitempty"`
|
||
RejectReason string `gorm:"type:varchar(500);default:''" json:"reject_reason,omitempty"`
|
||
AllowComment bool `gorm:"default:true" json:"allow_comment"`
|
||
TotalEnergyReceived int `gorm:"default:0" json:"total_energy_received"` // 文章累计被赋能域能(乘10,冗余计数)
|
||
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
|
||
CreatedAt time.Time `json:"created_at"`
|
||
UpdatedAt time.Time `json:"updated_at"`
|
||
|
||
// 非数据库字段(联表查询填充)
|
||
// gorm:"-:migration" 指定不创建/迁移该列,"<-:false" 禁止写入,"column:author_name" 允许
|
||
// 从 JOIN 查询的 users.username AS author_name 别名中读取
|
||
AuthorName string `gorm:"-:migration;<-:false;column:author_name" json:"author_name,omitempty"`
|
||
}
|
||
|
||
// 帖子状态常量
|
||
const (
|
||
PostStatusDraft = "draft"
|
||
PostStatusPending = "pending"
|
||
PostStatusApproved = "approved"
|
||
PostStatusRejected = "rejected"
|
||
PostStatusLocked = "locked"
|
||
)
|