Some checks failed
CI / Lint + Build (push) Has been cancelled
变更模型: - Post: 嵌入 BaseModel,移除手动 ID/CreatedAt/UpdatedAt/DeletedAt - Comment: 嵌入 BaseModel,保留 is_deleted 自定义软删除 - Announcement: 嵌入 BaseModel - Category: 嵌入 BaseModel - Folder + FolderItem: 嵌入 BaseModel - CommunityFund: primaryKey → primarykey (统一小写)
8 lines
233 B
Go
8 lines
233 B
Go
package model
|
||
|
||
// CommunityFund 公户余额(单行表,id=1)
|
||
type CommunityFund struct {
|
||
ID uint `gorm:"primarykey" json:"id"`
|
||
Balance int `gorm:"not null;default:0" json:"balance"` // 余额(×10,允许负数)
|
||
}
|