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;
|
}
|
}
|