geekai/api/go/store/model/base.go
2023-06-15 09:41:30 +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
}