Files
junhong_cmp_fiber/internal/model/base.go
2025-12-15 14:37:34 +08:00

10 lines
201 B
Go

package model
// atlas:ignore
//
// BaseModel 基础模型,包含通用字段
type BaseModel struct {
Creator uint `gorm:"not null" json:"creator"`
Updater uint `gorm:"not null" json:"updater"`
}