Documentation ¶
Index ¶
Constants ¶
View Source
const NoneID = uint64(0)
NoneID 空ID
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BaseModel ¶
type BaseModel struct { ID uint64 `gorm:"column:id;type:bigint;primary_key; AUTO_INCREMENT"` CreatedAt time.Time `gorm:"column:created_at;type:datetime;comment:创建时间"` //创建时间 UpdatedAt time.Time `gorm:"column:updated_at;type:datetime;comment:更新时间"` //更新时间 DeletedAt *time.Time `gorm:"column:deleted_at;type:datetime;comment:(软)删除时间"` //(软)删除时间 }
BaseModel 基础模型字段
Click to show internal directories.
Click to hide internal directories.