5abc705eae
- web/: 产品官网(Hero 事件流终端、功能矩阵、架构、快速开始、下载、博客 + Markdown 详情页),青瓷绿双主题 - admin/: 内容管理(JWT 登录、文章分页/搜索/CRUD、草稿与发布),embed 挂 /admin - server/: Gin + GORM,MySQL(DSN 走 .env,SQLite 兜底);规范落地:sundynix_ 表前缀、字符串雪花主键、snake_case 列名、统一响应信封、公共分页参数 - 双 SPA embed 单二进制部署,make build 一键出包 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
26 lines
586 B
Go
26 lines
586 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
"git.sundynix.cn/Blizzard/sundynix-site/server/internal/pkg/idgen"
|
|
)
|
|
|
|
// BaseModel 所有表的公共字段:字符串雪花主键 + 时间戳。
|
|
// 列名由 GORM NamingStrategy 统一转 snake_case。
|
|
type BaseModel struct {
|
|
ID string `gorm:"primaryKey;size:20" json:"id"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
// BeforeCreate 主键为空时自动生成雪花 ID。
|
|
func (m *BaseModel) BeforeCreate(*gorm.DB) error {
|
|
if m.ID == "" {
|
|
m.ID = idgen.Next()
|
|
}
|
|
return nil
|
|
}
|