go-common/app/interface/live/app-room/model/livewallet.go

11 lines
292 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
//LiveWallet 直播钱包数据
type LiveWallet struct {
Gold int64 `json:"gold"`
Silver int64 `json:"silver"`
GoldRechargeCnt int64 `json:"gold_recharge_cnt"`
GoldPayCnt int64 `json:"gold_pay_cnt"`
SilverPayCnt int64 `json:"silver_pay_cnt"`
}