user.wallet.get.go 180 B

1234567891011
  1. package user
  2. import "duoduo/models/mysql"
  3. type WalletGetRequest struct {
  4. OpenId string `json:"openId"`
  5. }
  6. type WalletGetResponse struct {
  7. Wallet mysql.Wallet `json:"wallet"`
  8. }