package com.yeshi.fanli.entity.shop;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 商品分类
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_shop_goods_class")
|
public class BanLiShopGoodsClass {
|
@Column(name = "sgc_id")
|
private Long id;
|
|
@Column(name = "sgc_name")
|
private String name;// 分类名称
|
@Column(name = "sgc_picture")
|
private String picture;// 分类图标
|
@Column(name = "sgc_create_time")
|
private Date createTime;
|
@Column(name = "sgc_update_time")
|
private Date updateTime;
|
|
public BanLiShopGoodsClass(Long id) {
|
this.id = id;
|
}
|
|
public BanLiShopGoodsClass() {
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|