package com.yeshi.fanli.entity.bus.help;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
|
/**
|
* 帮助中心标题
|
*
|
* @author yj
|
*
|
* @date 2018年8月14日
|
*/
|
@org.yeshi.utils.mybatis.Table("yeshi_ec_help_center")
|
public class HelpCenter implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Column(name = "h_id")
|
private Long id;
|
|
@Column(name = "h_title")
|
private String title;// 名称
|
|
@Column(name = "h_weight")
|
private Integer weight; // 权重
|
|
@Column(name = "h_cid")
|
private HelpClass helpClass; // 分类
|
|
|
@Column(name = "h_createtime")
|
private Date createtime; // 创建时间
|
|
@Column(name = "h_updatetime")
|
private Date updatetime; // 更新时间(修改时间)
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
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 Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public HelpClass getHelpClass() {
|
return helpClass;
|
}
|
|
public void setHelpClass(HelpClass helpClass) {
|
this.helpClass = helpClass;
|
}
|
|
}
|