fwq
2024-05-17 e907afae6e26219d9b063c9d03c293785b09f3ee
提交 | 用户 | age
ddd881 1 package com.hz.his.dto.order;
F 2
3 import lombok.Data;
4
5 import java.math.BigDecimal;
6
7 /**
8  * @author wzh
9  * 退回支付记录扩展
10  */
11 @Data
12 public class OrderPayMethodDto {
13
60b8b2 14     /** 可退支付方式编码 */
ddd881 15     private String payMethodNo;
60b8b2 16     /** 可退支付方式名称 */
eea83a 17     private String payMethodName;
60b8b2 18     /** 可退支付金额 */
eea83a 19     private BigDecimal payTotal;
60b8b2 20     /**是否现金支付 0否1是*/
C 21     private Integer isMoneyPay;
22     /**是否划扣计算:0否1是*/
23     private Integer isExecute;
24
438c4d 25     /** 抵扣类型 */
F 26     private String deductionType;
eb2eda 27     /** 抵扣退款总值(积分) */
F 28     private BigDecimal refundDeductionTotal;
438c4d 29
eea83a 30     /** 转换方式编码 (实际退款方式编码) */
Z 31     private String refundNumberNo;
32     /** 转换方式名称 (实际退款方式编码)*/
33     private String refundNumberName;
34     /** 转换实退金额 (实际退款金额)*/
ddd881 35     private BigDecimal money;
ad9108 36     /** 转换实退抵扣值 (实际退款积分)*/
F 37     private BigDecimal deductionTotal;
ddd881 38
b56154 39     /** 备注 */
Z 40     private String remarks;
41
42
ddd881 43     public OrderPayMethodDto() {
F 44     }
45
eb2eda 46 //    public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal,Integer isMoneyPay,Integer isExecute) {
F 47 //        this.payMethodNo = payMethodNo;
48 //        this.payMethodName = payMethodName;
49 //        this.payTotal = payTotal;
50 //        this.isMoneyPay = isMoneyPay;
51 //        this.isExecute = isExecute;
52 //    }
438c4d 53
eb2eda 54     public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal
F 55             , Integer isMoneyPay, Integer isExecute, String deductionType, BigDecimal refundDeductionTotal) {
438c4d 56         this.payMethodNo = payMethodNo;
F 57         this.payMethodName = payMethodName;
58         this.payTotal = payTotal;
59         this.isMoneyPay = isMoneyPay;
60         this.isExecute = isExecute;
61         this.deductionType = deductionType;
eb2eda 62         this.refundDeductionTotal = refundDeductionTotal;
438c4d 63     }
ddd881 64 }