|
package com.ishop.model.po;
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.walker.jdbc.BasePo;
|
|
/**
|
* 表名:EB_ARTICLE *
|
* @author genrator
|
*/
|
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
|
public class EbArticle extends BasePo<EbArticle> {
|
// 序列化版本号
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 用于兼容老写法
|
*/
|
@JsonIgnore
|
public static final EbArticle ROW_MAPPER = new EbArticle();
|
|
// 主键
|
private Long id = null;
|
@JsonIgnore
|
protected boolean isset_id = false;
|
|
// 属性列表
|
private Long cid = null;
|
@JsonIgnore
|
protected boolean isset_cid = false;
|
|
private String title = null;
|
@JsonIgnore
|
protected boolean isset_title = false;
|
|
private String author = null;
|
@JsonIgnore
|
protected boolean isset_author = false;
|
|
private String cover = null;
|
@JsonIgnore
|
protected boolean isset_cover = false;
|
|
private String synopsis = null;
|
@JsonIgnore
|
protected boolean isset_synopsis = false;
|
|
private String content = null;
|
@JsonIgnore
|
protected boolean isset_content = false;
|
|
private Long visit = null;
|
@JsonIgnore
|
protected boolean isset_visit = false;
|
|
private Integer isHot = null;
|
@JsonIgnore
|
protected boolean isset_isHot = false;
|
|
private Integer isBanner = null;
|
@JsonIgnore
|
protected boolean isset_isBanner = false;
|
|
private Integer status = null;
|
@JsonIgnore
|
protected boolean isset_status = false;
|
|
private Integer sort = null;
|
@JsonIgnore
|
protected boolean isset_sort = false;
|
|
private Integer productId = null;
|
@JsonIgnore
|
protected boolean isset_productId = false;
|
|
private Integer isDel = null;
|
@JsonIgnore
|
protected boolean isset_isDel = false;
|
|
private Long createTime = null;
|
@JsonIgnore
|
protected boolean isset_createTime = false;
|
|
private Long updateTime = null;
|
@JsonIgnore
|
protected boolean isset_updateTime = false;
|
|
/**
|
* 默认构造函数
|
*/
|
public EbArticle() {
|
}
|
|
/**
|
* 根据主键构造对象
|
*/
|
public EbArticle(Long id) {
|
this.setId(id);
|
}
|
|
/**
|
* 设置主键值
|
*/
|
@Override
|
public void setPkValue(Object value) {
|
this.setId((Long) value);
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
this.isset_id = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyId() {
|
return this.id == null;
|
}
|
|
public Long getCid() {
|
return this.cid;
|
}
|
|
public void setCid(Long cid) {
|
this.cid = cid;
|
this.isset_cid = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyCid() {
|
return this.cid == null;
|
}
|
|
public String getTitle() {
|
return this.title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
this.isset_title = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyTitle() {
|
return this.title == null || this.title.length() == 0;
|
}
|
|
public String getAuthor() {
|
return this.author;
|
}
|
|
public void setAuthor(String author) {
|
this.author = author;
|
this.isset_author = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyAuthor() {
|
return this.author == null || this.author.length() == 0;
|
}
|
|
public String getCover() {
|
return this.cover;
|
}
|
|
public void setCover(String cover) {
|
this.cover = cover;
|
this.isset_cover = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyCover() {
|
return this.cover == null || this.cover.length() == 0;
|
}
|
|
public String getSynopsis() {
|
return this.synopsis;
|
}
|
|
public void setSynopsis(String synopsis) {
|
this.synopsis = synopsis;
|
this.isset_synopsis = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptySynopsis() {
|
return this.synopsis == null || this.synopsis.length() == 0;
|
}
|
|
public String getContent() {
|
return this.content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
this.isset_content = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyContent() {
|
return this.content == null || this.content.length() == 0;
|
}
|
|
public Long getVisit() {
|
return this.visit;
|
}
|
|
public void setVisit(Long visit) {
|
this.visit = visit;
|
this.isset_visit = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyVisit() {
|
return this.visit == null;
|
}
|
|
public Integer getIsHot() {
|
return this.isHot;
|
}
|
|
public void setIsHot(Integer isHot) {
|
this.isHot = isHot;
|
this.isset_isHot = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyIsHot() {
|
return this.isHot == null;
|
}
|
|
public Integer getIsBanner() {
|
return this.isBanner;
|
}
|
|
public void setIsBanner(Integer isBanner) {
|
this.isBanner = isBanner;
|
this.isset_isBanner = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyIsBanner() {
|
return this.isBanner == null;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
this.isset_status = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyStatus() {
|
return this.status == null;
|
}
|
|
public Integer getSort() {
|
return this.sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
this.isset_sort = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptySort() {
|
return this.sort == null;
|
}
|
|
public Integer getProductId() {
|
return this.productId;
|
}
|
|
public void setProductId(Integer productId) {
|
this.productId = productId;
|
this.isset_productId = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyProductId() {
|
return this.productId == null;
|
}
|
|
public Integer getIsDel() {
|
return this.isDel;
|
}
|
|
public void setIsDel(Integer isDel) {
|
this.isDel = isDel;
|
this.isset_isDel = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyIsDel() {
|
return this.isDel == null;
|
}
|
|
public Long getCreateTime() {
|
return this.createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
this.isset_createTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyCreateTime() {
|
return this.createTime == null;
|
}
|
|
public Long getUpdateTime() {
|
return this.updateTime;
|
}
|
|
public void setUpdateTime(Long updateTime) {
|
this.updateTime = updateTime;
|
this.isset_updateTime = true;
|
}
|
|
@JsonIgnore
|
public boolean isEmptyUpdateTime() {
|
return this.updateTime == null;
|
}
|
|
/**
|
* 重写 toString() 方法
|
*/
|
@Override
|
public String toString() {
|
return new StringBuilder()
|
.append("id=").append(this.id)
|
.append("cid=").append(this.cid)
|
.append("title=").append(this.title)
|
.append("author=").append(this.author)
|
.append("cover=").append(this.cover)
|
.append("synopsis=").append(this.synopsis)
|
.append("content=").append(this.content)
|
.append("visit=").append(this.visit)
|
.append("isHot=").append(this.isHot)
|
.append("isBanner=").append(this.isBanner)
|
.append("status=").append(this.status)
|
.append("sort=").append(this.sort)
|
.append("productId=").append(this.productId)
|
.append("isDel=").append(this.isDel)
|
.append("createTime=").append(this.createTime)
|
.append("updateTime=").append(this.updateTime)
|
.toString();
|
}
|
|
/**
|
* 克隆
|
*/
|
public EbArticle $clone() {
|
EbArticle eb_article = new EbArticle();
|
|
// 数据库名称
|
//eb_article.setDatabaseName_(this.getDatabaseName_());
|
|
// 主键
|
if (this.isset_id) {
|
eb_article.setId(this.getId());
|
}
|
// 普通属性
|
if (this.isset_cid) {
|
eb_article.setCid(this.getCid());
|
}
|
if (this.isset_title) {
|
eb_article.setTitle(this.getTitle());
|
}
|
if (this.isset_author) {
|
eb_article.setAuthor(this.getAuthor());
|
}
|
if (this.isset_cover) {
|
eb_article.setCover(this.getCover());
|
}
|
if (this.isset_synopsis) {
|
eb_article.setSynopsis(this.getSynopsis());
|
}
|
if (this.isset_content) {
|
eb_article.setContent(this.getContent());
|
}
|
if (this.isset_visit) {
|
eb_article.setVisit(this.getVisit());
|
}
|
if (this.isset_isHot) {
|
eb_article.setIsHot(this.getIsHot());
|
}
|
if (this.isset_isBanner) {
|
eb_article.setIsBanner(this.getIsBanner());
|
}
|
if (this.isset_status) {
|
eb_article.setStatus(this.getStatus());
|
}
|
if (this.isset_sort) {
|
eb_article.setSort(this.getSort());
|
}
|
if (this.isset_productId) {
|
eb_article.setProductId(this.getProductId());
|
}
|
if (this.isset_isDel) {
|
eb_article.setIsDel(this.getIsDel());
|
}
|
if (this.isset_createTime) {
|
eb_article.setCreateTime(this.getCreateTime());
|
}
|
if (this.isset_updateTime) {
|
eb_article.setUpdateTime(this.getUpdateTime());
|
}
|
return eb_article;
|
}
|
}
|