mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 13:47:47 +08:00
10 lines
144 B
Go
10 lines
144 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type BaseModel struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|