livewallet.go 292 B

12345678910
  1. package model
  2. //LiveWallet 直播钱包数据
  3. type LiveWallet struct {
  4. Gold int64 `json:"gold"`
  5. Silver int64 `json:"silver"`
  6. GoldRechargeCnt int64 `json:"gold_recharge_cnt"`
  7. GoldPayCnt int64 `json:"gold_pay_cnt"`
  8. SilverPayCnt int64 `json:"silver_pay_cnt"`
  9. }