user.trans.get.go 420 B

123456789101112131415161718
  1. package user
  2. import (
  3. "duoduo/models/mysql"
  4. "github.com/shopspring/decimal"
  5. )
  6. type TransGetInput struct {
  7. OpenId string `json:"openId"`
  8. PidStatus int `json:"pidStatus"`
  9. }
  10. type TransGetOutput struct {
  11. Wallet mysql.Wallet `json:"wallet"`
  12. ReviewAmount decimal.Decimal `json:"reviewAmount"` //审核中金额
  13. CompletedAmount decimal.Decimal `json:"completedAmount"` //审核完成金额
  14. }