691 lines
11 KiB
Java
691 lines
11 KiB
Java
package com.ruoyi.jarvis.domain;
|
|
|
|
import java.util.Date;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
/**
|
|
* 京粉订单对象 order_rows
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public class OrderRows extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** ID */
|
|
private String id;
|
|
|
|
/** 订单ID */
|
|
private Long orderId;
|
|
|
|
/** 父订单ID */
|
|
private Long parentId;
|
|
|
|
/** 下单时间 */
|
|
private Date orderTime;
|
|
|
|
/** 完成时间 */
|
|
private Date finishTime;
|
|
|
|
/** 修改时间 */
|
|
private Date modifyTime;
|
|
|
|
/** 订单类型 */
|
|
private Integer orderEmt;
|
|
|
|
/** 是否PLUS会员 */
|
|
private Integer plus;
|
|
|
|
/** 联盟ID */
|
|
private Long unionId;
|
|
|
|
/** SKU ID */
|
|
private Long skuId;
|
|
|
|
/** SKU名称 */
|
|
private String skuName;
|
|
|
|
/** SKU数量 */
|
|
private Integer skuNum;
|
|
|
|
/** SKU退货数量 */
|
|
private Integer skuReturnNum;
|
|
|
|
/** SKU冻结数量 */
|
|
private Integer skuFrozenNum;
|
|
|
|
/** 价格 */
|
|
private Double price;
|
|
|
|
/** 佣金比例 */
|
|
private Double commissionRate;
|
|
|
|
/** 子边比例 */
|
|
private Double subSideRate;
|
|
|
|
/** 补贴比例 */
|
|
private Double subsidyRate;
|
|
|
|
/** 最终比例 */
|
|
private Double finalRate;
|
|
|
|
/** 预估成本价 */
|
|
private Double estimateCosPrice;
|
|
|
|
/** 预估佣金 */
|
|
private Double estimateFee;
|
|
|
|
/** 实际成本价 */
|
|
private Double actualCosPrice;
|
|
|
|
/** 实际佣金 */
|
|
private Double actualFee;
|
|
|
|
/** 有效性 */
|
|
private Integer validCode;
|
|
|
|
/** 跟踪类型 */
|
|
private Integer traceType;
|
|
|
|
/** 位置ID */
|
|
private Long positionId;
|
|
|
|
/** 站点ID */
|
|
private Long siteId;
|
|
|
|
/** 联盟别名 */
|
|
private String unionAlias;
|
|
|
|
/** PID */
|
|
private String pid;
|
|
|
|
/** 一级分类ID */
|
|
private Long cid1;
|
|
|
|
/** 二级分类ID */
|
|
private Long cid2;
|
|
|
|
/** 三级分类ID */
|
|
private Long cid3;
|
|
|
|
/** 子联盟ID */
|
|
private String subUnionId;
|
|
|
|
/** 联盟标签 */
|
|
private String unionTag;
|
|
|
|
/** POP ID */
|
|
private Long popId;
|
|
|
|
/** 扩展字段1 */
|
|
private String ext1;
|
|
|
|
/** 支付月份 */
|
|
private String payMonth;
|
|
|
|
/** 活动ID */
|
|
private Long cpActId;
|
|
|
|
/** 联盟角色 */
|
|
private Integer unionRole;
|
|
|
|
/** 礼品券OCS金额 */
|
|
private Double giftCouponOcsAmount;
|
|
|
|
/** 礼品券KEY */
|
|
private String giftCouponKey;
|
|
|
|
/** 余额扩展 */
|
|
private String balanceExt;
|
|
|
|
/** 签名 */
|
|
private String sign;
|
|
|
|
/** 促销价格金额 */
|
|
private Double proPriceAmount;
|
|
|
|
/** RID */
|
|
private Long rid;
|
|
|
|
/** 商品信息ID */
|
|
private Long goodsInfoId;
|
|
|
|
/** 快递状态 */
|
|
private Integer expressStatus;
|
|
|
|
/** 渠道ID */
|
|
private Long channelId;
|
|
|
|
/** SKU标签 */
|
|
private String skuTag;
|
|
|
|
/** 商品ID */
|
|
private String itemId;
|
|
|
|
/** 调用方商品ID */
|
|
private String callerItemId;
|
|
|
|
/** 订单标签 */
|
|
private String orderTag;
|
|
|
|
public String getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getOrderId()
|
|
{
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(Long orderId)
|
|
{
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public Long getParentId()
|
|
{
|
|
return parentId;
|
|
}
|
|
|
|
public void setParentId(Long parentId)
|
|
{
|
|
this.parentId = parentId;
|
|
}
|
|
|
|
public Date getOrderTime()
|
|
{
|
|
return orderTime;
|
|
}
|
|
|
|
public void setOrderTime(Date orderTime)
|
|
{
|
|
this.orderTime = orderTime;
|
|
}
|
|
|
|
public Date getFinishTime()
|
|
{
|
|
return finishTime;
|
|
}
|
|
|
|
public void setFinishTime(Date finishTime)
|
|
{
|
|
this.finishTime = finishTime;
|
|
}
|
|
|
|
public Date getModifyTime()
|
|
{
|
|
return modifyTime;
|
|
}
|
|
|
|
public void setModifyTime(Date modifyTime)
|
|
{
|
|
this.modifyTime = modifyTime;
|
|
}
|
|
|
|
public Integer getOrderEmt()
|
|
{
|
|
return orderEmt;
|
|
}
|
|
|
|
public void setOrderEmt(Integer orderEmt)
|
|
{
|
|
this.orderEmt = orderEmt;
|
|
}
|
|
|
|
public Integer getPlus()
|
|
{
|
|
return plus;
|
|
}
|
|
|
|
public void setPlus(Integer plus)
|
|
{
|
|
this.plus = plus;
|
|
}
|
|
|
|
public Long getUnionId()
|
|
{
|
|
return unionId;
|
|
}
|
|
|
|
public void setUnionId(Long unionId)
|
|
{
|
|
this.unionId = unionId;
|
|
}
|
|
|
|
public Long getSkuId()
|
|
{
|
|
return skuId;
|
|
}
|
|
|
|
public void setSkuId(Long skuId)
|
|
{
|
|
this.skuId = skuId;
|
|
}
|
|
|
|
public String getSkuName()
|
|
{
|
|
return skuName;
|
|
}
|
|
|
|
public void setSkuName(String skuName)
|
|
{
|
|
this.skuName = skuName;
|
|
}
|
|
|
|
public Integer getSkuNum()
|
|
{
|
|
return skuNum;
|
|
}
|
|
|
|
public void setSkuNum(Integer skuNum)
|
|
{
|
|
this.skuNum = skuNum;
|
|
}
|
|
|
|
public Integer getSkuReturnNum()
|
|
{
|
|
return skuReturnNum;
|
|
}
|
|
|
|
public void setSkuReturnNum(Integer skuReturnNum)
|
|
{
|
|
this.skuReturnNum = skuReturnNum;
|
|
}
|
|
|
|
public Integer getSkuFrozenNum()
|
|
{
|
|
return skuFrozenNum;
|
|
}
|
|
|
|
public void setSkuFrozenNum(Integer skuFrozenNum)
|
|
{
|
|
this.skuFrozenNum = skuFrozenNum;
|
|
}
|
|
|
|
public Double getPrice()
|
|
{
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(Double price)
|
|
{
|
|
this.price = price;
|
|
}
|
|
|
|
public Double getCommissionRate()
|
|
{
|
|
return commissionRate;
|
|
}
|
|
|
|
public void setCommissionRate(Double commissionRate)
|
|
{
|
|
this.commissionRate = commissionRate;
|
|
}
|
|
|
|
public Double getSubSideRate()
|
|
{
|
|
return subSideRate;
|
|
}
|
|
|
|
public void setSubSideRate(Double subSideRate)
|
|
{
|
|
this.subSideRate = subSideRate;
|
|
}
|
|
|
|
public Double getSubsidyRate()
|
|
{
|
|
return subsidyRate;
|
|
}
|
|
|
|
public void setSubsidyRate(Double subsidyRate)
|
|
{
|
|
this.subsidyRate = subsidyRate;
|
|
}
|
|
|
|
public Double getFinalRate()
|
|
{
|
|
return finalRate;
|
|
}
|
|
|
|
public void setFinalRate(Double finalRate)
|
|
{
|
|
this.finalRate = finalRate;
|
|
}
|
|
|
|
public Double getEstimateCosPrice()
|
|
{
|
|
return estimateCosPrice;
|
|
}
|
|
|
|
public void setEstimateCosPrice(Double estimateCosPrice)
|
|
{
|
|
this.estimateCosPrice = estimateCosPrice;
|
|
}
|
|
|
|
public Double getEstimateFee()
|
|
{
|
|
return estimateFee;
|
|
}
|
|
|
|
public void setEstimateFee(Double estimateFee)
|
|
{
|
|
this.estimateFee = estimateFee;
|
|
}
|
|
|
|
public Double getActualCosPrice()
|
|
{
|
|
return actualCosPrice;
|
|
}
|
|
|
|
public void setActualCosPrice(Double actualCosPrice)
|
|
{
|
|
this.actualCosPrice = actualCosPrice;
|
|
}
|
|
|
|
public Double getActualFee()
|
|
{
|
|
return actualFee;
|
|
}
|
|
|
|
public void setActualFee(Double actualFee)
|
|
{
|
|
this.actualFee = actualFee;
|
|
}
|
|
|
|
public Integer getValidCode()
|
|
{
|
|
return validCode;
|
|
}
|
|
|
|
public void setValidCode(Integer validCode)
|
|
{
|
|
this.validCode = validCode;
|
|
}
|
|
|
|
public Integer getTraceType()
|
|
{
|
|
return traceType;
|
|
}
|
|
|
|
public void setTraceType(Integer traceType)
|
|
{
|
|
this.traceType = traceType;
|
|
}
|
|
|
|
public Long getPositionId()
|
|
{
|
|
return positionId;
|
|
}
|
|
|
|
public void setPositionId(Long positionId)
|
|
{
|
|
this.positionId = positionId;
|
|
}
|
|
|
|
public Long getSiteId()
|
|
{
|
|
return siteId;
|
|
}
|
|
|
|
public void setSiteId(Long siteId)
|
|
{
|
|
this.siteId = siteId;
|
|
}
|
|
|
|
public String getUnionAlias()
|
|
{
|
|
return unionAlias;
|
|
}
|
|
|
|
public void setUnionAlias(String unionAlias)
|
|
{
|
|
this.unionAlias = unionAlias;
|
|
}
|
|
|
|
public String getPid()
|
|
{
|
|
return pid;
|
|
}
|
|
|
|
public void setPid(String pid)
|
|
{
|
|
this.pid = pid;
|
|
}
|
|
|
|
public Long getCid1()
|
|
{
|
|
return cid1;
|
|
}
|
|
|
|
public void setCid1(Long cid1)
|
|
{
|
|
this.cid1 = cid1;
|
|
}
|
|
|
|
public Long getCid2()
|
|
{
|
|
return cid2;
|
|
}
|
|
|
|
public void setCid2(Long cid2)
|
|
{
|
|
this.cid2 = cid2;
|
|
}
|
|
|
|
public Long getCid3()
|
|
{
|
|
return cid3;
|
|
}
|
|
|
|
public void setCid3(Long cid3)
|
|
{
|
|
this.cid3 = cid3;
|
|
}
|
|
|
|
public String getSubUnionId()
|
|
{
|
|
return subUnionId;
|
|
}
|
|
|
|
public void setSubUnionId(String subUnionId)
|
|
{
|
|
this.subUnionId = subUnionId;
|
|
}
|
|
|
|
public String getUnionTag()
|
|
{
|
|
return unionTag;
|
|
}
|
|
|
|
public void setUnionTag(String unionTag)
|
|
{
|
|
this.unionTag = unionTag;
|
|
}
|
|
|
|
public Long getPopId()
|
|
{
|
|
return popId;
|
|
}
|
|
|
|
public void setPopId(Long popId)
|
|
{
|
|
this.popId = popId;
|
|
}
|
|
|
|
public String getExt1()
|
|
{
|
|
return ext1;
|
|
}
|
|
|
|
public void setExt1(String ext1)
|
|
{
|
|
this.ext1 = ext1;
|
|
}
|
|
|
|
public String getPayMonth()
|
|
{
|
|
return payMonth;
|
|
}
|
|
|
|
public void setPayMonth(String payMonth)
|
|
{
|
|
this.payMonth = payMonth;
|
|
}
|
|
|
|
public Long getCpActId()
|
|
{
|
|
return cpActId;
|
|
}
|
|
|
|
public void setCpActId(Long cpActId)
|
|
{
|
|
this.cpActId = cpActId;
|
|
}
|
|
|
|
public Integer getUnionRole()
|
|
{
|
|
return unionRole;
|
|
}
|
|
|
|
public void setUnionRole(Integer unionRole)
|
|
{
|
|
this.unionRole = unionRole;
|
|
}
|
|
|
|
public Double getGiftCouponOcsAmount()
|
|
{
|
|
return giftCouponOcsAmount;
|
|
}
|
|
|
|
public void setGiftCouponOcsAmount(Double giftCouponOcsAmount)
|
|
{
|
|
this.giftCouponOcsAmount = giftCouponOcsAmount;
|
|
}
|
|
|
|
public String getGiftCouponKey()
|
|
{
|
|
return giftCouponKey;
|
|
}
|
|
|
|
public void setGiftCouponKey(String giftCouponKey)
|
|
{
|
|
this.giftCouponKey = giftCouponKey;
|
|
}
|
|
|
|
public String getBalanceExt()
|
|
{
|
|
return balanceExt;
|
|
}
|
|
|
|
public void setBalanceExt(String balanceExt)
|
|
{
|
|
this.balanceExt = balanceExt;
|
|
}
|
|
|
|
public String getSign()
|
|
{
|
|
return sign;
|
|
}
|
|
|
|
public void setSign(String sign)
|
|
{
|
|
this.sign = sign;
|
|
}
|
|
|
|
public Double getProPriceAmount()
|
|
{
|
|
return proPriceAmount;
|
|
}
|
|
|
|
public void setProPriceAmount(Double proPriceAmount)
|
|
{
|
|
this.proPriceAmount = proPriceAmount;
|
|
}
|
|
|
|
public Long getRid()
|
|
{
|
|
return rid;
|
|
}
|
|
|
|
public void setRid(Long rid)
|
|
{
|
|
this.rid = rid;
|
|
}
|
|
|
|
public Long getGoodsInfoId()
|
|
{
|
|
return goodsInfoId;
|
|
}
|
|
|
|
public void setGoodsInfoId(Long goodsInfoId)
|
|
{
|
|
this.goodsInfoId = goodsInfoId;
|
|
}
|
|
|
|
public Integer getExpressStatus()
|
|
{
|
|
return expressStatus;
|
|
}
|
|
|
|
public void setExpressStatus(Integer expressStatus)
|
|
{
|
|
this.expressStatus = expressStatus;
|
|
}
|
|
|
|
public Long getChannelId()
|
|
{
|
|
return channelId;
|
|
}
|
|
|
|
public void setChannelId(Long channelId)
|
|
{
|
|
this.channelId = channelId;
|
|
}
|
|
|
|
public String getSkuTag()
|
|
{
|
|
return skuTag;
|
|
}
|
|
|
|
public void setSkuTag(String skuTag)
|
|
{
|
|
this.skuTag = skuTag;
|
|
}
|
|
|
|
public String getItemId()
|
|
{
|
|
return itemId;
|
|
}
|
|
|
|
public void setItemId(String itemId)
|
|
{
|
|
this.itemId = itemId;
|
|
}
|
|
|
|
public String getCallerItemId()
|
|
{
|
|
return callerItemId;
|
|
}
|
|
|
|
public void setCallerItemId(String callerItemId)
|
|
{
|
|
this.callerItemId = callerItemId;
|
|
}
|
|
|
|
public String getOrderTag()
|
|
{
|
|
return orderTag;
|
|
}
|
|
|
|
public void setOrderTag(String orderTag)
|
|
{
|
|
this.orderTag = orderTag;
|
|
}
|
|
}
|