mirror of
https://gitee.com/dromara/carbon.git
synced 2024-12-02 12:17:37 +08:00
9 lines
501 B
Go
9 lines
501 B
Go
package carbon
|
|
|
|
type GormModel struct {
|
|
Id int64 `gorm:"primary_key;comment:'主键ID'" json:"id"`
|
|
CreatedAt ToDateTimeString `gorm:"comment:'创建时间';type:timestamp not null;default:current_timestamp;" json:"created_at"`
|
|
UpdatedAt ToDateTimeString `gorm:"comment:'更新时间';type:timestamp on update current_timestamp;omitempty;default:current_timestamp;" json:"updated_at"`
|
|
DeletedAt *ToDateTimeString `gorm:"comment:'删除时间'" json:"deleted_at" sql:"index"`
|
|
}
|