📄 brand.java
字号:
package com.itcast.bean.product;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Brand implements Serializable{
private static final long serialVersionUID = -4540465642606278764L;
private String code;
/** 品牌名称 **/
private String name;
/** 是否可见 **/
private Boolean visible = true;
/** logo图片路径 如:/images/brand/2008/12/12/ooo.gif" **/
private String logopath;
public Brand(String code) {
this.code = code;
}
public Brand() {}
public Brand(String name, String logopath) {
this.name = name;
this.logopath = logopath;
}
@Id @Column(length=36)
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@Column(length=40, nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Column(nullable=false)
public Boolean getVisible() {
return visible;
}
public void setVisible(Boolean visible) {
this.visible = visible;
}
@Column(length=80)
public String getLogopath() {
return logopath;
}
public void setLogopath(String logopath) {
this.logopath = logopath;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((code == null) ? 0 : code.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final Brand other = (Brand) obj;
if (code == null) {
if (other.code != null)
return false;
} else if (!code.equals(other.code))
return false;
return true;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -