chenjiahe
2024-05-22 0e50884553dd11fa72101f23ac51143c9f98a871
提交 | 用户 | age
2e9133 1 package com.hz.his.dto.order;
Z 2
223fa1 3 import com.hz.his.vo.order.refund.RefundDeductionCancelVo;
2e9133 4 import lombok.Data;
Z 5
6 import java.math.BigDecimal;
223fa1 7 import java.util.List;
2e9133 8
Z 9 /**
10  * @Author
11  * 订单结账扩展 二级子订单
12  */
13 @Data
14 public class OrderItemSourceRefundDto {
15
16     /** 子订单id */
6d0f9f 17     private String orderItemSonId;
2e9133 18     /** 子订单类型 */
Z 19     private String type;
872959 20     /** 商品名称 */
Z 21     private String goodsName;
2e9133 22     /** 实退数 */
Z 23     private Integer refundNum;
24     /** 实退金额 */
25     private BigDecimal refundMoney;
470a8b 26     /** 退款原因(员工) */
C 27     private String remarks;
28     /** 退款原因(用户) */
2e9133 29     private String refundReason;
bdc269 30
223fa1 31     /** 需要作废的划扣记录*/
C 32     private List<RefundDeductionCancelVo> refundDeductionCancelList;
33
34     /** 可退总金额(用于系统返回参数计算)*/
60b8b2 35     private BigDecimal approveRefundTotal = BigDecimal.ZERO;
61de68 36     /** 可退总积分(用于系统返回参数计算)*/
C 37     private BigDecimal approveRefundIntegral = BigDecimal.ZERO;
0fdec9 38     /** 可退总抵扣现金金额(用于系统返回参数计算)*/
F 39     private BigDecimal approveRefundDeductTotal = BigDecimal.ZERO;
40     /** 可退总抵扣积分(用于系统返回参数计算)*/
41     private BigDecimal approveRefundDeductIntegral = BigDecimal.ZERO;
42
43
953b48 44     /**分配可退金额*/
C 45     private List<OrderPayMethodDto> refundPayMethodList;
61de68 46
C 47     /** 平摊积分(用于系统返回参数计算)*/
48     private BigDecimal averageIntegral = BigDecimal.ZERO;
0fdec9 49     /** 平摊的抵扣现金(用于系统返回参数计算)*/
F 50     private BigDecimal averageDeductAmount = BigDecimal.ZERO;
51     /** 平摊的抵扣积分(用于系统返回参数计算)*/
52     private BigDecimal averageDeductIntegral = BigDecimal.ZERO;
60b8b2 53
2e9133 54 }