package com.yeshi.fanli.entity.bus.homemodule;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 专题管理
|
*
|
*/
|
@Table("yeshi_ec_special_extra")
|
public class SpecialExtra {
|
|
//专题id
|
@Column(name = "se_id")
|
private Long id;
|
|
// 是否转链
|
@Column(name = "se_need_spin")
|
private Boolean needSpin;
|
|
// 评论语
|
@Column(name = "se_comment")
|
private String comment;
|
|
// 创建时间
|
@Column(name = "se_createtime")
|
private Date createtime;
|
|
// 更新时间
|
@Column(name = "se_updatetime")
|
private Date updatetime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Boolean getNeedSpin() {
|
return needSpin;
|
}
|
|
public void setNeedSpin(Boolean needSpin) {
|
this.needSpin = needSpin;
|
}
|
|
public String getComment() {
|
return comment;
|
}
|
|
public void setComment(String comment) {
|
this.comment = comment;
|
}
|
|
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;
|
}
|
|
}
|