add parsing sumpays
All checks were successful
Build and push image / deploy (push) Successful in 1m44s

This commit is contained in:
2023-12-27 00:15:55 +03:00
parent c60045c47b
commit 3bbc6a0baa
9 changed files with 308 additions and 42 deletions

21
gorm/digi_good.go Normal file
View File

@ -0,0 +1,21 @@
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"
}