add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.dobbinsoft.fw.pay.model.result;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * <pre>
 * 微信支付-申请退款返回结果.
 * https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_4
 * </pre>
 *
 */
@Data
@EqualsAndHashCode(callSuper = true)
@NoArgsConstructor
public class MatrixPayRefundResult extends MatrixBasePayResult implements Serializable {
    private static final long serialVersionUID = -3392333879907788033L;
    /**
     * 支付订单号.
     */
    private String transactionId;
 
    /**
     * 商户订单号.
     */
    private String outTradeNo;
 
    /**
     * 商户退款单号.
     */
    private String outRefundNo;
 
    /**
     * 支付退款单号.
     */
    private String refundId;
 
    /**
     * 退款金额.
     */
    private Integer refundFee;
 
    /**
     * 应结退款金额.
     */
    private Integer settlementRefundFee;
 
    /**
     * 标价金额.
     */
    private Integer totalFee;
 
    /**
     * 应结订单金额.
     */
    private Integer settlementTotalFee;
 
    /**
     * 标价币种.
     */
    private String feeType;
 
    /**
     * 现金支付金额.
     */
    private Integer cashFee;
 
    /**
     * 现金支付币种.
     */
    private String cashFeeType;
 
    /**
     * 现金退款金额,单位为分,只能为整数,详见支付金额.
     */
    private Integer cashRefundFee;
 
    /**
     * 退款代金券使用数量.
     */
    private Integer couponRefundCount;
 
    /**
     * <pre>
     * 字段名:代金券退款总金额.
     * 变量名:coupon_refund_fee
     * 是否必填:否
     * 类型:Int
     * 示例值:100
     * 描述:代金券退款金额<=退款金额,退款金额-代金券或立减优惠退款金额为现金,说明详见代金券或立减优惠
     * </pre>
     */
    private Integer couponRefundFee;
 
    private List<MatrixPayRefundCouponInfo> refundCoupons;
 
}