package com.yeshi.fanli.entity.vipshop;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 唯品会订单详情
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_vipshop_order_detail")
|
public class VipShopOrderDetail {
|
|
public final static int STATUS_INVALID = 0;// 不合格
|
public final static int STATUS_UNKOWN = 1;// 待定
|
public final static int STATUS_FINISH = 2;// 已完结
|
|
// 明细
|
@Column(name = "vod_id")
|
private Long id;
|
@Column(name = "vod_identify_code")
|
private String identifyCode;// 唯一标识
|
@Column(name = "vod_goods_id")
|
private String goodsId;// 商品id
|
@Column(name = "vod_goods_name")
|
private String goodsName;// 商品名称
|
@Column(name = "vod_goods_thumb")
|
private String goodsThumb;// 商品缩略图
|
@Column(name = "vod_goods_count")
|
private Integer goodsCount;// 商品数量
|
@Column(name = "vod_commission_total_cost")
|
private BigDecimal commissionTotalCost;// 商品计佣金额(元,保留两位小数)
|
@Column(name = "vod_commission_rate")
|
private BigDecimal commissionRate;// 商品佣金比例(%)
|
@Column(name = "vod_commission")
|
private BigDecimal commission;// 商品佣金金额(元,保留两位小数)
|
@Column(name = "vod_comm_code")
|
private String commCode;// 佣金编码:对应商品二级分类
|
@Column(name = "vod_comm_name")
|
private String commName;// 佣金方案名称
|
@Column(name = "vod_order_source")
|
private String orderSource;// 订单来源
|
@Column(name = "vod_size_id")
|
private String sizeId;// 商品尺码:2019.01.01之后可用
|
@Column(name = "vod_status")
|
private Integer status;// 商品状态:0-不合格,1-待定,2-已完结
|
@Column(name = "vod_order_sn")
|
private String orderSn;// 订单号
|
@Column(name = "vod_create_time")
|
private Date createTime;// 创建时间
|
@Column(name = "vod_update_time")
|
private Date updateTime;// 更新时间
|
|
private List<VipShopAfterSaleDetailInfo> afterSaleInfo;// 售后信息
|
|
private VipShopOrder order;//订单
|
|
|
public VipShopOrder getOrder() {
|
return order;
|
}
|
|
public void setOrder(VipShopOrder order) {
|
this.order = order;
|
}
|
|
public List<VipShopAfterSaleDetailInfo> getAfterSaleInfo() {
|
return afterSaleInfo;
|
}
|
|
public void setAfterSaleInfo(List<VipShopAfterSaleDetailInfo> afterSaleInfo) {
|
this.afterSaleInfo = afterSaleInfo;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getIdentifyCode() {
|
return identifyCode;
|
}
|
|
public void setIdentifyCode(String identifyCode) {
|
this.identifyCode = identifyCode;
|
}
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
public String getGoodsThumb() {
|
return goodsThumb;
|
}
|
|
public void setGoodsThumb(String goodsThumb) {
|
this.goodsThumb = goodsThumb;
|
}
|
|
public Integer getGoodsCount() {
|
return goodsCount;
|
}
|
|
public void setGoodsCount(Integer goodsCount) {
|
this.goodsCount = goodsCount;
|
}
|
|
public BigDecimal getCommissionTotalCost() {
|
return commissionTotalCost;
|
}
|
|
public void setCommissionTotalCost(BigDecimal commissionTotalCost) {
|
this.commissionTotalCost = commissionTotalCost;
|
}
|
|
public BigDecimal getCommissionRate() {
|
return commissionRate;
|
}
|
|
public void setCommissionRate(BigDecimal commissionRate) {
|
this.commissionRate = commissionRate;
|
}
|
|
public BigDecimal getCommission() {
|
return commission;
|
}
|
|
public void setCommission(BigDecimal commission) {
|
this.commission = commission;
|
}
|
|
public String getCommCode() {
|
return commCode;
|
}
|
|
public void setCommCode(String commCode) {
|
this.commCode = commCode;
|
}
|
|
public String getCommName() {
|
return commName;
|
}
|
|
public void setCommName(String commName) {
|
this.commName = commName;
|
}
|
|
public String getOrderSource() {
|
return orderSource;
|
}
|
|
public void setOrderSource(String orderSource) {
|
this.orderSource = orderSource;
|
}
|
|
public String getSizeId() {
|
return sizeId;
|
}
|
|
public void setSizeId(String sizeId) {
|
this.sizeId = sizeId;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getOrderSn() {
|
return orderSn;
|
}
|
|
public void setOrderSn(String orderSn) {
|
this.orderSn = orderSn;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
}
|