mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 14:31:15 +08:00
10 lines
134 B
Go
10 lines
134 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type BaseModel struct {
|
||
|
ID uint `gorm:"primarykey"`
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
}
|