user.trans.create.go 254 B

123456789101112
  1. package user
  2. import "github.com/shopspring/decimal"
  3. type TransCreateInput struct {
  4. Amount decimal.Decimal `json:"amount"`
  5. OpenId string `json:"openId"`
  6. PidStatus int `json:"pidStatus"`
  7. }
  8. type TransCreateOutput struct {
  9. }