package gorm import "time" type DigiGood struct { ID string IDGoods int Name string IDSection int SellerID int Sellerrating float64 Sold int Returned int Price float64 Sumpay float64 CreatedAt time.Time } func (DigiGood) TableName() string { return "digi_goods" }