admin
2019-04-22 6351f4de939ffd51b5c10a90b21909206d9c94ab
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
package com.yeshi.fanli.entity.brand;
 
import java.util.Date;
 
import com.yeshi.fanli.entity.taobao.TaoBaoShop;
 
/**
 * 品牌分类店铺
 * 
 * @author Administrator
 *
 */
public class BrandClassShop {
    private Long id;
    private BrandClass brandClass;
    private TaoBaoShop shop;
    private Date createTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public BrandClass getBrandClass() {
        return brandClass;
    }
 
    public void setBrandClass(BrandClass brandClass) {
        this.brandClass = brandClass;
    }
 
    public TaoBaoShop getShop() {
        return shop;
    }
 
    public void setShop(TaoBaoShop shop) {
        this.shop = shop;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}