All checks were successful
Build and push image / deploy (push) Successful in 1m44s
22 lines
337 B
Go
22 lines
337 B
Go
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"
|
|
}
|