package com.yeshi.fanli.entity.taobao;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import javax.persistence.Transient;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 淘宝维权订单
|
*
|
* @author Administrator
|
*
|
*/
|
|
@Table("yeshi_ec_taobao_weiqaun_order")
|
public class TaoBaoWeiQuanOrder {
|
@Column(name = "tmo_id")
|
private Long id;
|
@Column(name = "tmo_order_id")
|
private String orderId;
|
@Column(name = "tmo_order_item_id")
|
private String orderItemId;
|
@Column(name = "tmo_goods_name")
|
private String goodsName;
|
@Column(name = "tmo_money")
|
private BigDecimal money;
|
@Column(name = "tmo_fan_money")
|
private BigDecimal fanMoney;
|
@Column(name = "tmo_state")
|
private String state;
|
@Column(name = "tmo_jiesuan_time")
|
private Date jieSuanTime;
|
@Column(name = "tmo_weiquan_time")
|
private Date weiQuanTime;
|
@Column(name = "tmo_weiquan_finish_time")
|
private Date weiQuanFinishTime;
|
@Column(name = "tmo_createtime")
|
private Date createTime;// 创建时间
|
@Column(name = "tmo_updatetime")
|
private Date updateTime;// 本地更新时间
|
|
@Transient
|
private int mate; // 是否已匹配
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getOrderItemId() {
|
return orderItemId;
|
}
|
|
public void setOrderItemId(String orderItemId) {
|
this.orderItemId = orderItemId;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public BigDecimal getFanMoney() {
|
return fanMoney;
|
}
|
|
public void setFanMoney(BigDecimal fanMoney) {
|
this.fanMoney = fanMoney;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public Date getJieSuanTime() {
|
return jieSuanTime;
|
}
|
|
public void setJieSuanTime(Date jieSuanTime) {
|
this.jieSuanTime = jieSuanTime;
|
}
|
|
public Date getWeiQuanTime() {
|
return weiQuanTime;
|
}
|
|
public void setWeiQuanTime(Date weiQuanTime) {
|
this.weiQuanTime = weiQuanTime;
|
}
|
|
public Date getWeiQuanFinishTime() {
|
return weiQuanFinishTime;
|
}
|
|
public void setWeiQuanFinishTime(Date weiQuanFinishTime) {
|
this.weiQuanFinishTime = weiQuanFinishTime;
|
}
|
|
public int getMate() {
|
return mate;
|
}
|
|
public void setMate(int mate) {
|
this.mate = mate;
|
}
|
}
|