shop.go 408 B

123456789101112131415161718192021222324252627
  1. package tables
  2. type Shop_item struct {
  3. ProductId string
  4. ProductName string
  5. Amount int
  6. Price int // 单位为钻石数量或者人民币分
  7. IsHot int
  8. Bonus int // 多送百分比
  9. Extra string // 扩展信息
  10. }
  11. type Shop_gold struct {
  12. Shop_item
  13. }
  14. type Shop_diamond struct {
  15. Shop_gold
  16. }
  17. type Shop_cannon struct {
  18. Shop_gold
  19. }
  20. type Shop_gift struct {
  21. Shop_gold
  22. }