package com.yeshi.fanli.entity.shop;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
@Table("yeshi_ec_shop_goods_imgs")
|
public class BanLiShopGoodsImg {
|
@Column(name = "sgi_id")
|
private Long id;
|
@Column(name = "sgi_goods_id")
|
private BanLiShopGoods goods;
|
@Column(name = "sgi_url")
|
private String url;
|
@Column(name = "sgi_url_md5")
|
private String urlMD5;
|
@Column(name = "sgi_create_time")
|
private Date createTime;
|
@Column(name = "sgi_weight")
|
private Integer weight;
|
|
public Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public BanLiShopGoods getGoods() {
|
return goods;
|
}
|
|
public void setGoods(BanLiShopGoods goods) {
|
this.goods = goods;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getUrlMD5() {
|
return urlMD5;
|
}
|
|
public void setUrlMD5(String urlMD5) {
|
this.urlMD5 = urlMD5;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|