提交 | 用户 | age
|
3b07ed
|
1 |
package com.hz.crm.dto; |
W |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.math.BigDecimal; |
|
6 |
|
|
7 |
/** |
|
8 |
* 退款子订单数据 |
|
9 |
* 辅助实体数据,主要是用来识别退款金额来源,方便后续的数据变更保存 |
|
10 |
* @author wzh |
|
11 |
*/ |
|
12 |
@Data |
|
13 |
public class RefundItemDto extends IdDto { |
|
14 |
|
|
15 |
/** 子订单id */ |
|
16 |
private String orderItemId; |
|
17 |
/** 其他订单id */ |
|
18 |
private String otherId; |
|
19 |
/** 退回数量 */ |
|
20 |
private Integer refundNum; |
|
21 |
|
|
22 |
/** 退款总金额(元) */ |
|
23 |
private BigDecimal refundTotal; |
|
24 |
/** 退款总积分 */ |
|
25 |
private BigDecimal refundIntegral; |
|
26 |
/**现金退款金额(元*/ |
|
27 |
private BigDecimal refundMoney = BigDecimal.ZERO; |
|
28 |
/**退款储值金(元)*/ |
|
29 |
private BigDecimal refundFund = BigDecimal.ZERO; |
|
30 |
/**退款增值金(元)*/ |
|
31 |
private BigDecimal refundIncrement = BigDecimal.ZERO; |
|
32 |
|
|
33 |
} |