package book import "time" type HardDeleteModel struct { ID uint `json:"id" form:"id" gorm:"primarykey;comment:主键"` CreatedAt time.Time `json:"createdAt" form:"createdAt" gorm:"comment:创建时间"` UpdatedAt time.Time `json:"updatedAt" form:"updatedAt" gorm:"comment:更新时间"` }