ai-go/store/model/base.go
2024-08-19 11:08:55 +08:00

10 lines
144 B
Go

package model
import "time"
type BaseModel struct {
Id uint `gorm:"primarykey;column:id"`
CreatedAt time.Time
UpdatedAt time.Time
}