You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
292 B

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"`
}