提交 | 用户 | 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;
27     /** 抵扣金额 */
28     private BigDecimal deductionMoney;
29     /** 剩余抵扣金额 */
30     private BigDecimal surplusDeductionTotal;
31
eea83a 32     /** 转换方式编码 (实际退款方式编码) */
Z 33     private String refundNumberNo;
34     /** 转换方式名称 (实际退款方式编码)*/
35     private String refundNumberName;
36     /** 转换实退金额 (实际退款金额)*/
ddd881 37     private BigDecimal money;
F 38
b56154 39     /** 备注 */
Z 40     private String remarks;
41
42
ddd881 43     public OrderPayMethodDto() {
F 44     }
45
60b8b2 46     public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal,Integer isMoneyPay,Integer isExecute) {
ddd881 47         this.payMethodNo = payMethodNo;
bdc269 48         this.payMethodName = payMethodName;
C 49         this.payTotal = payTotal;
60b8b2 50         this.isMoneyPay = isMoneyPay;
C 51         this.isExecute = isExecute;
ddd881 52     }
438c4d 53
F 54     public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal, Integer isMoneyPay,
55                              Integer isExecute, String deductionType, BigDecimal deductionMoney,
56                              BigDecimal surplusDeductionTotal) {
57         this.payMethodNo = payMethodNo;
58         this.payMethodName = payMethodName;
59         this.payTotal = payTotal;
60         this.isMoneyPay = isMoneyPay;
61         this.isExecute = isExecute;
62         this.deductionType = deductionType;
63         this.deductionMoney = deductionMoney;
64         this.surplusDeductionTotal = surplusDeductionTotal;
65     }
ddd881 66 }