fwq
2023-04-03 93e2629252f8ccaf94fe571a1496acfb3087a058
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
package com.hz.his.dto.order;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzh
 * 退回支付记录扩展
 */
@Data
public class OrderPayMethodDto {
 
    /** 可退支付方式编码 */
    private String payMethodNo;
    /** 可退支付方式名称 */
    private String payMethodName;
    /** 可退支付金额 */
    private BigDecimal payTotal;
    /**是否现金支付 0否1是*/
    private Integer isMoneyPay;
    /**是否划扣计算:0否1是*/
    private Integer isExecute;
 
    /** 转换方式编码 (实际退款方式编码) */
    private String refundNumberNo;
    /** 转换方式名称 (实际退款方式编码)*/
    private String refundNumberName;
    /** 转换实退金额 (实际退款金额)*/
    private BigDecimal money;
 
    /** 备注 */
    private String remarks;
 
 
    public OrderPayMethodDto() {
    }
 
    public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal,Integer isMoneyPay,Integer isExecute) {
        this.payMethodNo = payMethodNo;
        this.payMethodName = payMethodName;
        this.payTotal = payTotal;
        this.isMoneyPay = isMoneyPay;
        this.isExecute = isExecute;
    }
}