package com.yeshi.fanli.entity.bus.clazz;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.yeshi.fanli.entity.system.BusinessSystem;
|
|
/**
|
* 商品分类
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_class")
|
public class GoodsClass implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Column(name = "id")
|
private Long id;
|
|
@Column(name = "name")
|
private String name;
|
|
@Column(name = "picture")
|
private String picture;
|
|
@Column(name = "url")
|
private String url;
|
|
@Column(name = "key")
|
private String key;
|
|
@Column(name = "search_param")
|
private String searchParam;
|
|
@Column(name = "orderby")
|
private Integer orderby;
|
|
@Column(name = "createtime")
|
private Long createtime;
|
|
@Column(name = "ios_click")
|
private Long iosClick;
|
|
@Column(name = "android_click")
|
private Long androidClick;
|
|
|
// 点击次数
|
private Long countClick = 0l;
|
// 关联标签数量
|
private int countlabel = 0;
|
// 系统关联列表
|
private List<BusinessSystem> systemList;
|
|
|
public GoodsClass() {
|
}
|
|
public GoodsClass(Long id) {
|
super();
|
this.id = id;
|
}
|
|
public GoodsClass(String name, String picture, Integer orderby, Long createtime) {
|
super();
|
this.name = name;
|
this.picture = picture;
|
this.orderby = orderby;
|
this.createtime = createtime;
|
}
|
|
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 String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getSearchParam() {
|
return searchParam;
|
}
|
|
public void setSearchParam(String searchParam) {
|
this.searchParam = searchParam;
|
}
|
|
public Integer getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(Integer orderby) {
|
this.orderby = orderby;
|
}
|
|
public Long getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Long createtime) {
|
this.createtime = createtime;
|
}
|
|
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 Long getCountClick() {
|
return countClick;
|
}
|
|
public void setCountClick(Long countClick) {
|
this.countClick = countClick;
|
}
|
|
public int getCountlabel() {
|
return countlabel;
|
}
|
|
public void setCountlabel(int countlabel) {
|
this.countlabel = countlabel;
|
}
|
|
public List<BusinessSystem> getSystemList() {
|
return systemList;
|
}
|
|
public void setSystemList(List<BusinessSystem> systemList) {
|
this.systemList = systemList;
|
}
|
|
}
|