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
package com.hz.his.dto.order.refund;
 
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.annotation.Index;
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author CJH
 * @Date 2023-03-24
 * 用来装载子项退款方式的金额
 */
@Data
public class RefundPaymentMethodVo {
 
    /**退款支付方式编号*/
    private String numberNo;
    /**退款支付方式名称*/
    private String name;
    /**退款金额*/
    private BigDecimal refundTotal;
 
    public RefundPaymentMethodVo() {
    }
 
    public RefundPaymentMethodVo(String numberNo, String name,BigDecimal refundTotal) {
        this.numberNo = numberNo;
        this.name = name;
        this.refundTotal = refundTotal;
    }
}