1Panel/backend/app/model/base.go

10 lines
134 B
Go
Raw Normal View History

2022-09-01 16:48:43 +08:00
package model
import "time"
type BaseModel struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
UpdatedAt time.Time
}