package com.hz.crm.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 退款子订单数据
|
* 辅助实体数据,主要是用来识别退款金额来源,方便后续的数据变更保存
|
* @author wzh
|
*/
|
@Data
|
public class RefundItemDto extends IdDto {
|
|
/** 子订单id */
|
private String orderItemId;
|
/** 其他订单id */
|
private String otherId;
|
/** 退回数量 */
|
private Integer refundNum;
|
|
/** 退款总金额(元) */
|
private BigDecimal refundTotal;
|
/** 退款总积分 */
|
private BigDecimal refundIntegral;
|
/**现金退款金额(元*/
|
private BigDecimal refundMoney = BigDecimal.ZERO;
|
/**退款储值金(元)*/
|
private BigDecimal refundFund = BigDecimal.ZERO;
|
/**退款增值金(元)*/
|
private BigDecimal refundIncrement = BigDecimal.ZERO;
|
|
}
|