package com.yeshi.fanli.entity.taobao;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 淘宝店铺定向计划
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_taobao_common_campaign")
|
public class CommonCampaignInfo {
|
@Column(name = "tcc_id")
|
private Long id;
|
@Column(name = "tcc_shop_keeper_id")
|
private Long shopKeeperID;
|
@Column(name = "tcc_campaign_id")
|
private Long campaignID;
|
@Column(name = "tcc_seller_id")
|
private Long sellerId;
|
@Column(name = "tcc_createtime")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getShopKeeperID() {
|
return shopKeeperID;
|
}
|
|
public void setShopKeeperID(Long shopKeeperID) {
|
this.shopKeeperID = shopKeeperID;
|
}
|
|
public Long getCampaignID() {
|
return campaignID;
|
}
|
|
public void setCampaignID(Long campaignID) {
|
this.campaignID = campaignID;
|
}
|
|
public Long getSellerId() {
|
return sellerId;
|
}
|
|
public void setSellerId(Long sellerId) {
|
this.sellerId = sellerId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|