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; } }