All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.order.ORefundOrder Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.order;

import eleme.openapi.sdk.api.enumeration.order.*;
import eleme.openapi.sdk.api.entity.order.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class ORefundOrder{

    /**
     * 订单id
     */
    private String orderId;
    public String getOrderId() {
        return orderId;
    }
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
    
    /**
     * 退单状态
     */
    private OOrderRefundStatus refundStatus;
    public OOrderRefundStatus getRefundStatus() {
        return refundStatus;
    }
    public void setRefundStatus(OOrderRefundStatus refundStatus) {
        this.refundStatus = refundStatus;
    }
    
    /**
     * 退单类型
     */
    private ORefundType refundType;
    public ORefundType getRefundType() {
        return refundType;
    }
    public void setRefundType(ORefundType refundType) {
        this.refundType = refundType;
    }
    
    /**
     * 退款总额
     */
    private double totalPrice;
    public double getTotalPrice() {
        return totalPrice;
    }
    public void setTotalPrice(double totalPrice) {
        this.totalPrice = totalPrice;
    }
    
    /**
     * 订单下商品列表
     */
    private List goodsList;
    public List getGoodsList() {
        return goodsList;
    }
    public void setGoodsList(List goodsList) {
        this.goodsList = goodsList;
    }
    
    /**
     * 用户申请退单原因
     */
    private String applyRefundReason;
    public String getApplyRefundReason() {
        return applyRefundReason;
    }
    public void setApplyRefundReason(String applyRefundReason) {
        this.applyRefundReason = applyRefundReason;
    }
    
    /**
     * 退单图片hash列表
     */
    private List refundImages;
    public List getRefundImages() {
        return refundImages;
    }
    public void setRefundImages(List refundImages) {
        this.refundImages = refundImages;
    }
    
    /**
     * 扩展信息
     */
    private String extraJson;
    public String getExtraJson() {
        return extraJson;
    }
    public void setExtraJson(String extraJson) {
        this.extraJson = extraJson;
    }
    
    /**
     * 已退打包费金额
     */
    private double packageFee;
    public double getPackageFee() {
        return packageFee;
    }
    public void setPackageFee(double packageFee) {
        this.packageFee = packageFee;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy