chenjiahe
2023-03-24 bdc2690c86edc484375fcdbd3330b583886776b7
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
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;
    /** 转换方式编码 (实际退款方式编码) */
    private String refundNumberNo;
    /** 转换方式名称 (实际退款方式编码)*/
    private String refundNumberName;
    /** 转换实退金额 (实际退款金额)*/
    private BigDecimal money;
 
    /** 备注 */
    private String remarks;
 
 
    public OrderPayMethodDto() {
    }
 
    public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal, String refundNumberNo, String refundNumberName, BigDecimal money) {
        this.payMethodNo = payMethodNo;
        this.payMethodName = payMethodName;
        this.payTotal = payTotal;
        this.refundNumberNo = refundNumberNo;
        this.refundNumberName = refundNumberName;
        this.money = money;
    }
}