cmg
2024-06-19 4f115ae0b211e839ca0079f3d7d5f8882fc650f3
phis-feign/src/main/java/com/hz/his/dto/order/OrderRefundDto.java
@@ -1,5 +1,6 @@
package com.hz.his.dto.order;
import com.hz.his.dto.refund.RefundPreferentialDto;
import lombok.Data;
import java.math.BigDecimal;
@@ -26,6 +27,8 @@
    private String remarks;
    /** 退款原因(用户) */
    private String refundReason;
    /** Y-自动作废划扣  0否1是(整单退的时候用到)*/
    private Integer deductionCancel = 0;
    /** 操作人员工标识*/
    private String operatorId;
@@ -40,8 +43,22 @@
    //////系统参数
    /** 可退款总金额(额外数据),parameterVerification方法校验的时候赋值 */
    private BigDecimal totalAmount;
    /** 可退款总积分(额外数据),parameterVerification方法校验的时候赋值 */
    private BigDecimal totalIntegral;
    /** 选择退款总金额(额外数据),parameterVerification方法校验的时候赋值  */
    private BigDecimal refundTotal;
    /** 选择退款总金额(额外数据),parameterVerification方法校验的时候赋值  */
    private BigDecimal refundIntegral;
    /** 可退款被积分抵扣的现金数量,parameterVerification方法校验的时候赋值  */
    private BigDecimal totalDeductAmount;
    /** 可退款抵扣现金的积分数量,parameterVerification方法校验的时候赋值  */
    private BigDecimal totalDeductIntegral;
    /** 填写的退款被积分抵扣的现金数量,parameterVerification方法校验的时候赋值  */
    private BigDecimal refundDeductAmount;
    /** 填写的退款抵扣现金的积分数量,parameterVerification方法校验的时候赋值  */
    private BigDecimal refundDeductIntegral;
    /** 可退款方式集合 */
    private List<OrderPayMethodDto> payMethodList;
    /** 可退款优惠券信息集合 */
@@ -50,10 +67,19 @@
    /** 平台来源  因为是his助手取消订单的话就要自动确认退款单  必填*/
    private Integer platformSource;
    /** 是否第三方退款(0否1是) */
    private Integer isThirdPartyRefund = 1;
    /**必填:退费统计类型(RefundRecord)*/
    private String refundStatistics;
    /**备用参数*/
    //总订单领建标识
    private String hisOrderId;
    //非必填 重发标识
    private String resendRecordId;
    /** 退款优惠 */
    private RefundPreferentialDto refundPreferentialDto;
}