exchange.go 1009 B

1234567891011121314151617181920212223242526272829303132
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // GoodsInfo goods info
  6. type GoodsInfo struct {
  7. ID int64 `json:"-"`
  8. ProductID string `json:"product_id"`
  9. ResourceID int64 `json:"-"`
  10. GoodsType int `json:"goods_type"`
  11. Discount int `json:"discount"`
  12. IsDisplay int `json:"-"`
  13. DisplayOnTime time.Time `json:"-"`
  14. ProductName string `json:"product_name"` // 商品名称
  15. OriginPrice int64 `json:"origin_price"` // 实时成本, 单位分
  16. CurrentPrice int64 `json:"current_price"` // 实时售价, 单位分
  17. Month int32 `json:"month"` //有效期
  18. }
  19. // GoodsOrder goods order
  20. type GoodsOrder struct {
  21. MID int64 `json:"-"`
  22. OrderNo string `json:"-"`
  23. OrderTime time.Time `json:"order_time"`
  24. GoodsType int `json:"-"`
  25. GoodsID string `json:"-"`
  26. GoodsName string `json:"goods_name"`
  27. GoodsPrice int64 `json:"goods_price"`
  28. GoodsCost int64 `json:"goods_cost"`
  29. }