No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
12345678910111213 |
- package md
-
- const (
- UserWalletRedisKey = "user_wallet_user:%d"
- )
-
- type DealUserWalletReq struct {
- Direction string `json:"direction"`
- Kind int `json:"kind"`
- Title string `json:"title"`
- Uid int64 `json:"uid"`
- Amount float64 `json:"amount"`
- }
|