蛋蛋星球-制度模式
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

user_wallet.go 273 B

1 settimana fa
12345678910111213
  1. package md
  2. const (
  3. UserWalletRedisKey = "user_wallet_user:%d"
  4. )
  5. type DealUserWalletReq struct {
  6. Direction string `json:"direction"`
  7. Kind int `json:"kind"`
  8. Title string `json:"title"`
  9. Uid int64 `json:"uid"`
  10. Amount float64 `json:"amount"`
  11. }