package com.hai.entity; import java.io.Serializable; import java.util.Date; /** * cms_content * @author */ /** * * 代码由工具生成 * **/ public class CmsContent implements Serializable { /** * 主键 */ private Long id; /** * 内容分类 */ private Long categoryId; /** * 分类编码 */ private String categoryCode; /** * 内容标题 */ private String title; /** * 简要描述 */ private String description; /** * 创建时间 */ private Date createTime; /** * 状态 0:删除,1:编辑中,2:已发布,3:已下线 */ private Integer status; /** * 是否有附件:1:有,0:无 */ private Integer hasPatch; /** * 访问总量 */ private Integer visitCount; /** * 标签,格式为:流行,古典 */ private String tag; /** * 封面图片信息 */ private String imgData; /** * 跳转名称 */ private String jumpName; /** * 跳转路径 */ private String jumpUrl; /** * 优先级 */ private Integer sortId; /** * 更新时间 */ private Date updateTime; /** * 是否推荐:0:不推荐,1:推荐 */ private Boolean recommend; /** * 发布单位id */ private Long companyId; /** * 发布单位 */ private String companyName; /** * 发布人 */ private String userName; /** * 操作人id */ private Long opId; private String ext1; private String ext2; private String ext3; /** * 内容 */ private String content; private static final long serialVersionUID = 1L; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getCategoryId() { return categoryId; } public void setCategoryId(Long categoryId) { this.categoryId = categoryId; } public String getCategoryCode() { return categoryCode; } public void setCategoryCode(String categoryCode) { this.categoryCode = categoryCode; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Integer getHasPatch() { return hasPatch; } public void setHasPatch(Integer hasPatch) { this.hasPatch = hasPatch; } public Integer getVisitCount() { return visitCount; } public void setVisitCount(Integer visitCount) { this.visitCount = visitCount; } public String getTag() { return tag; } public void setTag(String tag) { this.tag = tag; } public String getImgData() { return imgData; } public void setImgData(String imgData) { this.imgData = imgData; } public String getJumpName() { return jumpName; } public void setJumpName(String jumpName) { this.jumpName = jumpName; } public String getJumpUrl() { return jumpUrl; } public void setJumpUrl(String jumpUrl) { this.jumpUrl = jumpUrl; } public Integer getSortId() { return sortId; } public void setSortId(Integer sortId) { this.sortId = sortId; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } public Boolean getRecommend() { return recommend; } public void setRecommend(Boolean recommend) { this.recommend = recommend; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public Long getOpId() { return opId; } public void setOpId(Long opId) { this.opId = opId; } public String getExt1() { return ext1; } public void setExt1(String ext1) { this.ext1 = ext1; } public String getExt2() { return ext2; } public void setExt2(String ext2) { this.ext2 = ext2; } public String getExt3() { return ext3; } public void setExt3(String ext3) { this.ext3 = ext3; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } CmsContent other = (CmsContent) that; return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getCategoryId() == null ? other.getCategoryId() == null : this.getCategoryId().equals(other.getCategoryId())) && (this.getCategoryCode() == null ? other.getCategoryCode() == null : this.getCategoryCode().equals(other.getCategoryCode())) && (this.getTitle() == null ? other.getTitle() == null : this.getTitle().equals(other.getTitle())) && (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription())) && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) && (this.getHasPatch() == null ? other.getHasPatch() == null : this.getHasPatch().equals(other.getHasPatch())) && (this.getVisitCount() == null ? other.getVisitCount() == null : this.getVisitCount().equals(other.getVisitCount())) && (this.getTag() == null ? other.getTag() == null : this.getTag().equals(other.getTag())) && (this.getImgData() == null ? other.getImgData() == null : this.getImgData().equals(other.getImgData())) && (this.getJumpName() == null ? other.getJumpName() == null : this.getJumpName().equals(other.getJumpName())) && (this.getJumpUrl() == null ? other.getJumpUrl() == null : this.getJumpUrl().equals(other.getJumpUrl())) && (this.getSortId() == null ? other.getSortId() == null : this.getSortId().equals(other.getSortId())) && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) && (this.getRecommend() == null ? other.getRecommend() == null : this.getRecommend().equals(other.getRecommend())) && (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId())) && (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName())) && (this.getUserName() == null ? other.getUserName() == null : this.getUserName().equals(other.getUserName())) && (this.getOpId() == null ? other.getOpId() == null : this.getOpId().equals(other.getOpId())) && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())) && (this.getContent() == null ? other.getContent() == null : this.getContent().equals(other.getContent())); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getCategoryId() == null) ? 0 : getCategoryId().hashCode()); result = prime * result + ((getCategoryCode() == null) ? 0 : getCategoryCode().hashCode()); result = prime * result + ((getTitle() == null) ? 0 : getTitle().hashCode()); result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode()); result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); result = prime * result + ((getHasPatch() == null) ? 0 : getHasPatch().hashCode()); result = prime * result + ((getVisitCount() == null) ? 0 : getVisitCount().hashCode()); result = prime * result + ((getTag() == null) ? 0 : getTag().hashCode()); result = prime * result + ((getImgData() == null) ? 0 : getImgData().hashCode()); result = prime * result + ((getJumpName() == null) ? 0 : getJumpName().hashCode()); result = prime * result + ((getJumpUrl() == null) ? 0 : getJumpUrl().hashCode()); result = prime * result + ((getSortId() == null) ? 0 : getSortId().hashCode()); result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); result = prime * result + ((getRecommend() == null) ? 0 : getRecommend().hashCode()); result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode()); result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode()); result = prime * result + ((getUserName() == null) ? 0 : getUserName().hashCode()); result = prime * result + ((getOpId() == null) ? 0 : getOpId().hashCode()); result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); result = prime * result + ((getContent() == null) ? 0 : getContent().hashCode()); return result; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", categoryId=").append(categoryId); sb.append(", categoryCode=").append(categoryCode); sb.append(", title=").append(title); sb.append(", description=").append(description); sb.append(", createTime=").append(createTime); sb.append(", status=").append(status); sb.append(", hasPatch=").append(hasPatch); sb.append(", visitCount=").append(visitCount); sb.append(", tag=").append(tag); sb.append(", imgData=").append(imgData); sb.append(", jumpName=").append(jumpName); sb.append(", jumpUrl=").append(jumpUrl); sb.append(", sortId=").append(sortId); sb.append(", updateTime=").append(updateTime); sb.append(", recommend=").append(recommend); sb.append(", companyId=").append(companyId); sb.append(", companyName=").append(companyName); sb.append(", userName=").append(userName); sb.append(", opId=").append(opId); sb.append(", ext1=").append(ext1); sb.append(", ext2=").append(ext2); sb.append(", ext3=").append(ext3); sb.append(", content=").append(content); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }