package com.zheng.cms.dao.model; import java.io.Serializable; public class CmsCategory implements Serializable { /** * 类目编号 * * @mbg.generated */ private Integer categoryId; /** * 上级编号 * * @mbg.generated */ private Integer pid; /** * 层级 * * @mbg.generated */ private Byte level; /** * 名称 * * @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 getCategoryId() { return categoryId; } public void setCategoryId(Integer categoryId) { this.categoryId = categoryId; } public Integer getPid() { return pid; } public void setPid(Integer pid) { this.pid = pid; } public Byte getLevel() { return level; } public void setLevel(Byte level) { this.level = level; } 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(", categoryId=").append(categoryId); sb.append(", pid=").append(pid); sb.append(", level=").append(level); 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; } CmsCategory other = (CmsCategory) that; return (this.getCategoryId() == null ? other.getCategoryId() == null : this.getCategoryId().equals(other.getCategoryId())) && (this.getPid() == null ? other.getPid() == null : this.getPid().equals(other.getPid())) && (this.getLevel() == null ? other.getLevel() == null : this.getLevel().equals(other.getLevel())) && (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 + ((getCategoryId() == null) ? 0 : getCategoryId().hashCode()); result = prime * result + ((getPid() == null) ? 0 : getPid().hashCode()); result = prime * result + ((getLevel() == null) ? 0 : getLevel().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; } }