data.go 640 B

1234567891011121314151617181920212223
  1. package slot
  2. const dateFormat = "2006-01-02 15:04:05"
  3. type req_base struct {
  4. GameID int // 游戏ID
  5. InvestAmount int // 下注金额
  6. BeginTime string // 开始时间
  7. EndTime string // 截止时间
  8. }
  9. // 统计信息
  10. type statInfo struct {
  11. DateFlag string `json:"DateFlag,omitempty"` // 日期标识
  12. InvestAmount int // 下注金额
  13. BetAmount int // 投注额
  14. BetTimes int // 投注次数
  15. ResultAmount int // 返还额
  16. MaxResultAmount int // 最大返还额
  17. WinTimes int // 赢次数
  18. WinAmount int // 赢金额
  19. Tax int // 台费
  20. }