提交 | 用户 | age
|
1869f3
|
1 |
package com.hx.phip.vo.order.refund; |
C |
2 |
|
99213f
|
3 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
C |
4 |
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
1869f3
|
5 |
import com.hx.phiappt.model.refund.RefundRecordConsumePay; |
ea4351
|
6 |
import com.hx.phiappt.model.refund.RefundRecordItemMethod; |
1869f3
|
7 |
import com.hx.phiappt.model.refund.RefundRecordMethod; |
C |
8 |
import lombok.Data; |
|
9 |
|
|
10 |
import java.math.BigDecimal; |
|
11 |
import java.util.List; |
|
12 |
|
|
13 |
/** |
|
14 |
* @author CJH |
|
15 |
*/ |
|
16 |
@Data |
|
17 |
public class RefundCarryVo { |
|
18 |
|
510678
|
19 |
/**退款的退款方式金额-该参数一开始就携带,全局使用*/ |
1869f3
|
20 |
private List<RefundRecordMethod> refundRecordMethodList; |
C |
21 |
|
a1c527
|
22 |
//***************内部携带作用参数,全程变化,注意使用******************** |
2a45d4
|
23 |
/**分配的退款支付方式与支付记录的关联数据*/ |
1869f3
|
24 |
private List<RefundRecordConsumePay> refundConsumePayList; |
ea4351
|
25 |
/**分配的退款支付方式*/ |
C |
26 |
private List<RefundRecordItemMethod> refundRecordItemMethodList; |
2a45d4
|
27 |
/**分配的退款支付方式划扣金额总和*/ |
1869f3
|
28 |
private BigDecimal deductionTotal; |
2a45d4
|
29 |
/**分配的退款支付方式现金金额总和*/ |
1869f3
|
30 |
private BigDecimal cashTotal; |
99213f
|
31 |
/**退款现金总金额(元,不包含退到储值金的)*/ |
C |
32 |
private BigDecimal cashPurenessTotal; |
|
33 |
/**退款储值金总金额(元)"*/ |
|
34 |
private BigDecimal rechargeTotal; |
|
35 |
/**退款增值金总金额(元)*/ |
|
36 |
private BigDecimal incrementTotal; |
|
37 |
/**退款积分*/ |
|
38 |
private BigDecimal integralTotal; |
|
39 |
/**退款总金额(元)*/ |
|
40 |
private BigDecimal refundTotal; |
2a45d4
|
41 |
/**分配的用户项目划扣金额*/ |
C |
42 |
private BigDecimal deductionTotalUser; |
589843
|
43 |
|
1869f3
|
44 |
} |