package com.matrix.system.shopXcx.bean; 
 | 
  
 | 
import com.matrix.core.anotations.Extend; 
 | 
import com.matrix.system.common.bean.EntityDTOExt; 
 | 
  
 | 
/** 
 | 
 * @description 退款记录详情表 
 | 
 * @author jiangyouyao 
 | 
 * @date 2019-06-16 15:34 
 | 
 */ 
 | 
public class ShopRefundRecordDetails extends EntityDTOExt { 
 | 
    @Extend 
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
    /** 
 | 
     * 主键 
 | 
     */ 
 | 
    @Extend 
 | 
    private Integer  id; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 退款编号 
 | 
     */ 
 | 
    @Extend 
 | 
    private String  refundNo; 
 | 
  
 | 
    /** 
 | 
     * 退款原因 
 | 
     */ 
 | 
    @Extend 
 | 
    private String  refundCause; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 退款金额 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double  refundMoney; 
 | 
  
 | 
    /** 
 | 
     * 订单编号 
 | 
     */ 
 | 
    @Extend 
 | 
    private String orderNo; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 订单金额 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double  orderMoney; 
 | 
  
 | 
    /** 
 | 
     * 产品名称 
 | 
     */ 
 | 
    @Extend 
 | 
    private String  title; 
 | 
  
 | 
    /** 
 | 
     * 商品单价 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double price; 
 | 
  
 | 
    /** 
 | 
     * 购买数量 
 | 
     */ 
 | 
    @Extend 
 | 
    private Integer count; 
 | 
  
 | 
    /** 
 | 
     * 商品总价 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double totalPrice; 
 | 
  
 | 
    /** 
 | 
     * 规格名称 
 | 
     */ 
 | 
    @Extend 
 | 
    private String skuName; 
 | 
  
 | 
    /** 
 | 
     * 优惠总金额 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double discountAmount; 
 | 
  
 | 
    /** 
 | 
     * 邮费 
 | 
     */ 
 | 
    @Extend 
 | 
    private Double postage; 
 | 
    private Long companyId; 
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
  
 | 
    public Double getPostage() { 
 | 
        return postage; 
 | 
    } 
 | 
  
 | 
    public void setPostage(Double postage) { 
 | 
        this.postage = postage; 
 | 
    } 
 | 
  
 | 
    public Integer getId() { 
 | 
        return id; 
 | 
    } 
 | 
  
 | 
    public void setId(Integer id) { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
    public String getRefundNo() { 
 | 
        return refundNo; 
 | 
    } 
 | 
  
 | 
    public void setRefundNo(String refundNo) { 
 | 
        this.refundNo = refundNo; 
 | 
    } 
 | 
  
 | 
    public String getRefundCause() { 
 | 
        return refundCause; 
 | 
    } 
 | 
  
 | 
    public void setRefundCause(String refundCause) { 
 | 
        this.refundCause = refundCause; 
 | 
    } 
 | 
  
 | 
    public Double getRefundMoney() { 
 | 
        return refundMoney; 
 | 
    } 
 | 
  
 | 
    public void setRefundMoney(Double refundMoney) { 
 | 
        this.refundMoney = refundMoney; 
 | 
    } 
 | 
  
 | 
    public String getOrderNo() { 
 | 
        return orderNo; 
 | 
    } 
 | 
  
 | 
    public void setOrderNo(String orderNo) { 
 | 
        this.orderNo = orderNo; 
 | 
    } 
 | 
  
 | 
    public Double getOrderMoney() { 
 | 
        return orderMoney; 
 | 
    } 
 | 
  
 | 
    public void setOrderMoney(Double orderMoney) { 
 | 
        this.orderMoney = orderMoney; 
 | 
    } 
 | 
  
 | 
    public String getTitle() { 
 | 
        return title; 
 | 
    } 
 | 
  
 | 
    public void setTitle(String title) { 
 | 
        this.title = title; 
 | 
    } 
 | 
  
 | 
    public Double getPrice() { 
 | 
        return price; 
 | 
    } 
 | 
  
 | 
    public void setPrice(Double price) { 
 | 
        this.price = price; 
 | 
    } 
 | 
  
 | 
    public Integer getCount() { 
 | 
        return count; 
 | 
    } 
 | 
  
 | 
    public void setCount(Integer count) { 
 | 
        this.count = count; 
 | 
    } 
 | 
  
 | 
    public Double getTotalPrice() { 
 | 
        return totalPrice; 
 | 
    } 
 | 
  
 | 
    public void setTotalPrice(Double totalPrice) { 
 | 
        this.totalPrice = totalPrice; 
 | 
    } 
 | 
  
 | 
    public String getSkuName() { 
 | 
        return skuName; 
 | 
    } 
 | 
  
 | 
    public void setSkuName(String skuName) { 
 | 
        this.skuName = skuName; 
 | 
    } 
 | 
  
 | 
    public Double getDiscountAmount() { 
 | 
        return discountAmount; 
 | 
    } 
 | 
  
 | 
    public void setDiscountAmount(Double discountAmount) { 
 | 
        this.discountAmount = discountAmount; 
 | 
    } 
 | 
} 
 |