package com.yeshi.fanli.entity.taobao;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
|
import org.springframework.data.annotation.Transient;
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
@Table("yeshi_ec_taobao_order")
|
public class TaoBaoOrder implements Serializable {
|
@Column(name = "to_id")
|
private Long id;
|
|
@Column(name = "to_create_time")
|
private String createTime; // 创建时间
|
@Column(name = "to_click_time")
|
private String clickTime; // 点击时间
|
@Column(name = "to_pay_time")
|
private String payTime;// 支付时间
|
@Column(name = "to_title")
|
private String title; // 商品名称
|
@Column(name = "to_auction_id")
|
private String auctionId; // 商品ID
|
@Column(name = "to_manager_wangwang")
|
private String managerWangWang; // 掌柜旺旺
|
@Column(name = "to_shop")
|
private String shop; // 所属店铺
|
@Column(name = "to_count")
|
private Integer count; // 商品数
|
@Column(name = "to_price")
|
private BigDecimal price; // 商品单价
|
@Column(name = "to_order_state")
|
private String orderState; // 订单状态 :订单付款、订单失效、订单结算
|
@Column(name = "to_order_type")
|
private String orderType; // 订单类型
|
@Column(name = "to_iratio")
|
private BigDecimal iRatio; // 收入比率
|
@Column(name = "to_sratio")
|
private BigDecimal sRatio; // 分成比率
|
@Column(name = "to_payment")
|
private BigDecimal payment; // 付款金额
|
@Column(name = "to_estimate")
|
private BigDecimal estimate; // 效果预估
|
@Column(name = "to_settlement")
|
private BigDecimal settlement; // 结算金额
|
@Column(name = "to_eIncome")
|
private BigDecimal eIncome; // 预估收入
|
@Column(name = "to_settlement_time")
|
private String settlementTime; // 结算时间
|
@Column(name = "to_tk_rate")
|
private BigDecimal tkRate; // 佣金比率
|
@Column(name = "to_tk_money")
|
private BigDecimal tkMoney; // 佣金金额
|
@Column(name = "to_technology_support_percent")
|
private BigDecimal technologySupportPercent;// 技术服务费
|
@Column(name = "to_subsidy_ratio")
|
private BigDecimal subsidyRatio; // 补贴比率
|
@Column(name = "to_subsidy")
|
private BigDecimal subsidy; // 补贴金额
|
@Column(name = "to_subsidy_type")
|
private String subsidyType; // 补贴类型
|
@Column(name = "to_transaction_platform")
|
private String transactionPlatform; // 成交平台
|
@Column(name = "to_third_service")
|
private String thirdService; // 第三方服务来源
|
@Column(name = "to_order_id")
|
private String orderId; // 订单编号
|
@Column(name = "to_class_name")
|
private String className; // 类目名称
|
@Column(name = "to_source_media_id")
|
private String sourceMediaId; // 来源媒体Id
|
@Column(name = "to_source_media_name")
|
private String sourceMediaName; // 来源媒体名称
|
@Column(name = "to_ad_position_id")
|
private String adPositionId; // 广告位ID
|
@Column(name = "to_ad_position_name")
|
private String adPositionName; // 广告位名称
|
@Column(name = "to_latest_updatetime")
|
private Date latestUpdateTime;// 最近一次的更新时间
|
@Column(name = "to_orderby")
|
private Integer orderBy;// 排序值
|
@Column(name = "to_special_id")
|
private String specialId;
|
@Column(name = "to_relation_id")
|
private String relationId;
|
@Column(name = "to_trade_id")
|
private String tradeId;// 交易ID
|
@Transient
|
private TaoBaoOrderGoods goods;
|
|
public TaoBaoOrderGoods getGoods() {
|
return goods;
|
}
|
|
public void setGoods(TaoBaoOrderGoods goods) {
|
this.goods = goods;
|
}
|
|
public String getTradeId() {
|
return tradeId;
|
}
|
|
public void setTradeId(String tradeId) {
|
this.tradeId = tradeId;
|
}
|
|
public String getSpecialId() {
|
return specialId;
|
}
|
|
public void setSpecialId(String specialId) {
|
this.specialId = specialId;
|
}
|
|
public String getRelationId() {
|
return relationId;
|
}
|
|
public void setRelationId(String relationId) {
|
this.relationId = relationId;
|
}
|
|
public Integer getOrderBy() {
|
return orderBy;
|
}
|
|
public void setOrderBy(Integer orderBy) {
|
this.orderBy = orderBy;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Date getLatestUpdateTime() {
|
return latestUpdateTime;
|
}
|
|
public void setLatestUpdateTime(Date latestUpdateTime) {
|
this.latestUpdateTime = latestUpdateTime;
|
}
|
|
public BigDecimal getTechnologySupportPercent() {
|
return technologySupportPercent;
|
}
|
|
public void setTechnologySupportPercent(BigDecimal technologySupportPercent) {
|
this.technologySupportPercent = technologySupportPercent;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getClickTime() {
|
return clickTime;
|
}
|
|
public void setClickTime(String clickTime) {
|
this.clickTime = clickTime;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getAuctionId() {
|
return auctionId;
|
}
|
|
public void setAuctionId(String auctionId) {
|
this.auctionId = auctionId;
|
}
|
|
public String getManagerWangWang() {
|
return managerWangWang;
|
}
|
|
public void setManagerWangWang(String managerWangWang) {
|
this.managerWangWang = managerWangWang;
|
}
|
|
public String getShop() {
|
return shop;
|
}
|
|
public void setShop(String shop) {
|
this.shop = shop;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public String getOrderState() {
|
return orderState;
|
}
|
|
public void setOrderState(String orderState) {
|
this.orderState = orderState;
|
}
|
|
public String getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(String orderType) {
|
this.orderType = orderType;
|
}
|
|
public BigDecimal getiRatio() {
|
return iRatio;
|
}
|
|
public void setiRatio(BigDecimal iRatio) {
|
this.iRatio = iRatio;
|
}
|
|
public BigDecimal getsRatio() {
|
return sRatio;
|
}
|
|
public void setsRatio(BigDecimal sRatio) {
|
this.sRatio = sRatio;
|
}
|
|
public BigDecimal getPayment() {
|
return payment;
|
}
|
|
public void setPayment(BigDecimal payment) {
|
this.payment = payment;
|
}
|
|
public BigDecimal getEstimate() {
|
return estimate;
|
}
|
|
public void setEstimate(BigDecimal estimate) {
|
this.estimate = estimate;
|
}
|
|
public BigDecimal getSettlement() {
|
return settlement;
|
}
|
|
public void setSettlement(BigDecimal settlement) {
|
this.settlement = settlement;
|
}
|
|
public BigDecimal geteIncome() {
|
return eIncome;
|
}
|
|
public void seteIncome(BigDecimal eIncome) {
|
this.eIncome = eIncome;
|
}
|
|
public String getSettlementTime() {
|
return settlementTime;
|
}
|
|
public void setSettlementTime(String settlementTime) {
|
this.settlementTime = settlementTime;
|
}
|
|
public BigDecimal getTkRate() {
|
return tkRate;
|
}
|
|
public void setTkRate(BigDecimal tkRate) {
|
this.tkRate = tkRate;
|
}
|
|
public BigDecimal getTkMoney() {
|
return tkMoney;
|
}
|
|
public void setTkMoney(BigDecimal tkMoney) {
|
this.tkMoney = tkMoney;
|
}
|
|
public BigDecimal getSubsidyRatio() {
|
return subsidyRatio;
|
}
|
|
public void setSubsidyRatio(BigDecimal subsidyRatio) {
|
this.subsidyRatio = subsidyRatio;
|
}
|
|
public BigDecimal getSubsidy() {
|
return subsidy;
|
}
|
|
public void setSubsidy(BigDecimal subsidy) {
|
this.subsidy = subsidy;
|
}
|
|
public String getSubsidyType() {
|
return subsidyType;
|
}
|
|
public void setSubsidyType(String subsidyType) {
|
this.subsidyType = subsidyType;
|
}
|
|
public String getTransactionPlatform() {
|
return transactionPlatform;
|
}
|
|
public void setTransactionPlatform(String transactionPlatform) {
|
this.transactionPlatform = transactionPlatform;
|
}
|
|
public String getThirdService() {
|
return thirdService;
|
}
|
|
public void setThirdService(String thirdService) {
|
this.thirdService = thirdService;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getClassName() {
|
return className;
|
}
|
|
public void setClassName(String className) {
|
this.className = className;
|
}
|
|
public String getSourceMediaId() {
|
return sourceMediaId;
|
}
|
|
public void setSourceMediaId(String sourceMediaId) {
|
this.sourceMediaId = sourceMediaId;
|
}
|
|
public String getSourceMediaName() {
|
return sourceMediaName;
|
}
|
|
public void setSourceMediaName(String sourceMediaName) {
|
this.sourceMediaName = sourceMediaName;
|
}
|
|
public String getAdPositionId() {
|
return adPositionId;
|
}
|
|
public void setAdPositionId(String adPositionId) {
|
this.adPositionId = adPositionId;
|
}
|
|
public String getAdPositionName() {
|
return adPositionName;
|
}
|
|
public void setAdPositionName(String adPositionName) {
|
this.adPositionName = adPositionName;
|
}
|
|
public String getPayTime() {
|
return payTime;
|
}
|
|
public void setPayTime(String payTime) {
|
this.payTime = payTime;
|
}
|
|
}
|