package com.yeshi.fanli.entity.bus.clazz;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
/**
|
* 二级分类标签
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_sub_class_label_map")
|
public class GoodsSubClassLabelMap {
|
@Column(name="sclm_id")
|
private Long id;// 主键ID
|
@Column(name="sclm_label_id")
|
private GoodsSubClassLabel label;
|
@Column(name="sclm_sub_class_id")
|
private GoodsSubClass goodsSubClass;
|
@Column(name="sclm_order_by")
|
private Integer orderBy;// 排序值
|
@Column(name="sclm_create_time")
|
private Date createTime;// 创建时间
|
@Column(name="sclm_update_time")
|
private Date updateTime;// 更改时间
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public GoodsSubClassLabel getLabel() {
|
return label;
|
}
|
|
public void setLabel(GoodsSubClassLabel label) {
|
this.label = label;
|
}
|
|
public GoodsSubClass getGoodsSubClass() {
|
return goodsSubClass;
|
}
|
|
public void setGoodsSubClass(GoodsSubClass goodsSubClass) {
|
this.goodsSubClass = goodsSubClass;
|
}
|
|
public Integer getOrderBy() {
|
return orderBy;
|
}
|
|
public void setOrderBy(Integer orderBy) {
|
this.orderBy = orderBy;
|
}
|
|
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;
|
}
|
}
|