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