Files
platiparser/gorm/digi_good.go
dilap54 3bbc6a0baa
All checks were successful
Build and push image / deploy (push) Successful in 1m44s
add parsing sumpays
2023-12-27 00:15:55 +03:00

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"
}