cash.out.go 574 B

123456789101112131415161718
  1. package models
  2. import "github.com/shopspring/decimal"
  3. type CashOutListRequest struct {
  4. OpenId string `json:"open_id"`
  5. Appid string `json:"appid"`
  6. PageSize int `json:"page_size"`
  7. PageIndex int `json:"page_index"`
  8. }
  9. type CashOutListReply struct {
  10. TotalAmount decimal.Decimal `json:"total_amount"` //总金额
  11. CreateAt string `json:"create_at"` //创建时间
  12. Fee decimal.Decimal `json:"fee"` //手续费
  13. Amount decimal.Decimal `json:"amount"` //实际到账金额
  14. Des string `json:"des"`
  15. }