re_recharge_info.go 611 B

12345678910111213
  1. package vo
  2. type ReRechargeInfo struct {
  3. RechargeId string `json:"rechargeId"`
  4. CreatorName string `json:"creatorName"`
  5. RechargeAmount float64 `json:"rechargeAmount"`
  6. RechargeMethod int64 `json:"rechargeMethod"` // 1对公转账 2微信支付
  7. TransferVoucherUrl string `json:"transferVoucherUrl"`
  8. CommitAt string `json:"commitAt"` // 充值申请提交时间
  9. ConfirmAt string `json:"confirmAt"` // 充值确认时间
  10. RefuseAt string `json:"refuseAt"` // 充值失败时间
  11. FailReason string `json:"failReason"` // 失败原因
  12. }