1Panel/backend/app/entity/common/common.go
2022-08-04 10:45:41 +08:00

9 lines
188 B
Go

package common
import "time"
type BaseModel struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time `gorm:"autoCreateTime"`
UpdatedAt time.Time `gorm:"autoUpdateTime"`
}