Administrator
2018-11-05 2d950dce7919a2bc39464f9d264f7b96b69f6d1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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;
    }
}