Files
platiparser/gorm/good.go
2023-12-20 23:09:12 +03:00

22 lines
325 B
Go

package gorm
import "time"
type Good struct {
ID string
Name string
IDC int
IDR int
Goodlink string
Seller string
Sellerlink string
Sellerrating int
Sold int
Price float64
CreatedAt time.Time
}
func (Good) TableName() string {
return "goods"
}