package com.zheng.cms.dao.model; import java.io.Serializable; public class CmsTag implements Serializable { /** * 标签编号 * * @mbg.generated */ private Integer tagId; /** * 名称 * * @mbg.generated */ private String name; /** * 描述 * * @mbg.generated */ private String description; /** * 图标 * * @mbg.generated */ private String icon; /** * 类型(1:普通,2:热门...) * * @mbg.generated */ private Byte type; /** * 别名 * * @mbg.generated */ private String alias; /** * 所属系统 * * @mbg.generated */ private Integer systemId; /** * 创建时间 * * @mbg.generated */ private Long ctime; /** * 排序 * * @mbg.generated */ private Long orders; private static final long serialVersionUID = 1L; public Integer getTagId() { return tagId; } public void setTagId(Integer tagId) { this.tagId = tagId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getIcon() { return icon; } public void setIcon(String icon) { this.icon = icon; } public Byte getType() { return type; } public void setType(Byte type) { this.type = type; } public String getAlias() { return alias; } public void setAlias(String alias) { this.alias = alias; } public Integer getSystemId() { return systemId; } public void setSystemId(Integer systemId) { this.systemId = systemId; } public Long getCtime() { return ctime; } public void setCtime(Long ctime) { this.ctime = ctime; } public Long getOrders() { return orders; } public void setOrders(Long orders) { this.orders = orders; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", tagId=").append(tagId); sb.append(", name=").append(name); sb.append(", description=").append(description); sb.append(", icon=").append(icon); sb.append(", type=").append(type); sb.append(", alias=").append(alias); sb.append(", systemId=").append(systemId); sb.append(", ctime=").append(ctime); sb.append(", orders=").append(orders); sb.append("]"); return sb.toString(); } @Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } CmsTag other = (CmsTag) that; return (this.getTagId() == null ? other.getTagId() == null : this.getTagId().equals(other.getTagId())) && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName())) && (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription())) && (this.getIcon() == null ? other.getIcon() == null : this.getIcon().equals(other.getIcon())) && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType())) && (this.getAlias() == null ? other.getAlias() == null : this.getAlias().equals(other.getAlias())) && (this.getSystemId() == null ? other.getSystemId() == null : this.getSystemId().equals(other.getSystemId())) && (this.getCtime() == null ? other.getCtime() == null : this.getCtime().equals(other.getCtime())) && (this.getOrders() == null ? other.getOrders() == null : this.getOrders().equals(other.getOrders())); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getTagId() == null) ? 0 : getTagId().hashCode()); result = prime * result + ((getName() == null) ? 0 : getName().hashCode()); result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode()); result = prime * result + ((getIcon() == null) ? 0 : getIcon().hashCode()); result = prime * result + ((getType() == null) ? 0 : getType().hashCode()); result = prime * result + ((getAlias() == null) ? 0 : getAlias().hashCode()); result = prime * result + ((getSystemId() == null) ? 0 : getSystemId().hashCode()); result = prime * result + ((getCtime() == null) ? 0 : getCtime().hashCode()); result = prime * result + ((getOrders() == null) ? 0 : getOrders().hashCode()); return result; } }