1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-16 18:54:43 +08:00

10 lines
149 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;AUTO_INCREMENT"`
2022-09-01 16:48:43 +08:00
CreatedAt time.Time
UpdatedAt time.Time
}