recharge.go 823 B

123456789101112131415161718192021222324
  1. package model
  2. // 每日充值-DailyRecharge exported from 活动-每日充值.xlsx
  3. type DailyRecharge struct {
  4. Uid int64 `json:"Uid"` // ID
  5. Gear int64 `json:"Gear"` // 挡位
  6. Days int64 `json:"Days"` // 天数
  7. Reward [][]int64 `json:"Reward"` // 奖励
  8. } // package model
  9. // 进度奖-DailyCumulative exported from 活动-每日充值.xlsx
  10. type DailyCumulative struct {
  11. Uid int64 `json:"Uid"` // ID
  12. Gear int64 `json:"Gear"` // 挡位
  13. Day int64 `json:"Day"` // 累计天数
  14. Reward [][]int64 `json:"Reward"` // 奖励
  15. }
  16. // 累计充值-Cumulative exported from 活动-循环累计充值.xlsx
  17. type Cumulative struct {
  18. Uid int64 `json:"Uid"` // ID
  19. Gear int64 `json:"Gear"` // 挡位 钻石金额
  20. Reward [][]int64 `json:"Reward"` // 奖励
  21. }