package com.yeshi.fanli.entity.bus.clazz;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 商品二级分类
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_sub_class")
|
public class GoodsSubClass implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Expose
|
@Column(name = "sub_id")
|
private Long id;
|
|
@Expose
|
@Column(name = "sub_name")
|
private String name; // 名称
|
|
@Expose
|
@Column(name = "sub_picture")
|
private String picture; // 图片路径
|
|
@Column(name = "sub_picture_second")
|
private String pictureSecond; // 新版图片1.5.3
|
|
@Column(name = "sub_weight")
|
private Integer weight; // 权重-排序
|
|
@Column(name = "sub_state")
|
private Integer state; // 状态 1启用 0停用
|
|
@Column(name = "sub_root_id")
|
private GoodsClass rootClass; // 一级类别
|
|
@Column(name = "sub_pid")
|
private GoodsSubClass parent; // 上级:对应的二级以下分类 用于3级、4级、5级
|
|
@Column(name = "sub_level")
|
private Integer level; // 具体等级
|
|
@Column(name = "sub_key")
|
private String key; // 搜索关键词
|
|
@Column(name = "sub_search_json")
|
private String searchJson; // 搜索条件
|
|
@Column(name = "sub_ios_click")
|
private Long iosClick = 0l;
|
|
@Column(name = "sub_android_click")
|
private Long androidClick = 0l;
|
|
private String taobaoCids;
|
|
|
|
@Column(name = "sub_createtime")
|
private Date createtime; // 创建时间
|
|
@Column(name = "sub_updatetime")
|
private Date updatetime; // 创建时间
|
@Column(name = "sub_sex")
|
private Integer sex;//性别
|
@Column(name = "sub_month")
|
private String month;//月份
|
|
|
private GoodsSubClassLabel classLabel;//标签
|
|
|
|
public GoodsSubClassLabel getClassLabel() {
|
return classLabel;
|
}
|
|
public void setClassLabel(GoodsSubClassLabel classLabel) {
|
this.classLabel = classLabel;
|
}
|
|
public Integer getSex() {
|
return sex;
|
}
|
|
public void setSex(Integer sex) {
|
this.sex = sex;
|
}
|
|
public String getMonth() {
|
return month;
|
}
|
|
public void setMonth(String month) {
|
this.month = month;
|
}
|
|
private Long countClick = 0l;
|
// 关联标签数量
|
private int countlabel = 0;
|
|
private String searchParam;
|
|
public GoodsSubClass() {
|
}
|
|
public GoodsSubClass(Long id) {
|
this.id = id;
|
}
|
|
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 Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public GoodsSubClass getParent() {
|
return parent;
|
}
|
|
public void setParent(GoodsSubClass parent) {
|
this.parent = parent;
|
}
|
|
public GoodsClass getRootClass() {
|
return rootClass;
|
}
|
|
public void setRootClass(GoodsClass rootClass) {
|
this.rootClass = rootClass;
|
}
|
|
public Long getIosClick() {
|
return iosClick;
|
}
|
|
public void setIosClick(Long iosClick) {
|
this.iosClick = iosClick;
|
}
|
|
public Long getAndroidClick() {
|
return androidClick;
|
}
|
|
public void setAndroidClick(Long androidClick) {
|
this.androidClick = androidClick;
|
}
|
|
public Integer getLevel() {
|
return level;
|
}
|
|
public void setLevel(Integer level) {
|
this.level = level;
|
}
|
|
public int getCountlabel() {
|
return countlabel;
|
}
|
|
public void setCountlabel(int countlabel) {
|
this.countlabel = countlabel;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public String getSearchJson() {
|
return searchJson;
|
}
|
|
public void setSearchJson(String searchJson) {
|
this.searchJson = searchJson;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public String getSearchParam() {
|
return searchParam;
|
}
|
|
public void setSearchParam(String searchParam) {
|
this.searchParam = searchParam;
|
}
|
|
public Long getCountClick() {
|
return countClick;
|
}
|
|
public void setCountClick(Long countClick) {
|
this.countClick = countClick;
|
}
|
|
public String getPictureSecond() {
|
return pictureSecond;
|
}
|
|
public void setPictureSecond(String pictureSecond) {
|
this.pictureSecond = pictureSecond;
|
}
|
|
public String getTaobaoCids() {
|
return taobaoCids;
|
}
|
|
public void setTaobaoCids(String taobaoCids) {
|
this.taobaoCids = taobaoCids;
|
}
|
}
|