📄 brand.java
字号:
package tarena.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Brand entity.
*
* @author MyEclipse Persistence Tools
*/
public class Brand implements java.io.Serializable {
// Fields
private Integer id;
private String enName;
private String cnName;
private String smallPhoto;
private String bigPhoto;
private String description;
private Set products = new HashSet(0);
// Constructors
/** default constructor */
public Brand() {
}
/** full constructor */
public Brand(String enName, String cnName, String smallPhoto,
String bigPhoto, String description, Set products) {
this.enName = enName;
this.cnName = cnName;
this.smallPhoto = smallPhoto;
this.bigPhoto = bigPhoto;
this.description = description;
this.products = products;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getEnName() {
return this.enName;
}
public void setEnName(String enName) {
this.enName = enName;
}
public String getCnName() {
return this.cnName;
}
public void setCnName(String cnName) {
this.cnName = cnName;
}
public String getSmallPhoto() {
return this.smallPhoto;
}
public void setSmallPhoto(String smallPhoto) {
this.smallPhoto = smallPhoto;
}
public String getBigPhoto() {
return this.bigPhoto;
}
public void setBigPhoto(String bigPhoto) {
this.bigPhoto = bigPhoto;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getProducts() {
return this.products;
}
public void setProducts(Set products) {
this.products = products;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -