蛋蛋星球-制度模式
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.

user_virtual_coin.go 354 B

1 周之前
1234567891011121314
  1. package md
  2. const (
  3. UserVirtualAmountRedisKey = "user_virtual_amount:%d:user:%d"
  4. )
  5. type DealUserVirtualCoinReq struct {
  6. Kind string `json:"kind"`
  7. Title string `json:"title"`
  8. TransferType int `json:"transfer_type"`
  9. CoinId int `json:"coin_id"`
  10. Uid int64 `json:"uid"`
  11. Amount float64 `json:"amount"`
  12. }