📄 norms.java
字号:
package tarena.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Norms generated by MyEclipse Persistence Tools
*/
public class Norms implements java.io.Serializable {
// Fields
private Integer id;
private Category category;
private String normname;
private String description;
private Set normproperties = new HashSet(0);
private Set productnorms = new HashSet(0);
// Constructors
/** default constructor */
public Norms() {
}
/** minimal constructor */
public Norms(Category category, String normname) {
this.category = category;
this.normname = normname;
}
/** full constructor */
public Norms(Category category, String normname, String description,
Set normproperties, Set productnorms) {
this.category = category;
this.normname = normname;
this.description = description;
this.normproperties = normproperties;
this.productnorms = productnorms;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Category getCategory() {
return this.category;
}
public void setCategory(Category category) {
this.category = category;
}
public String getNormname() {
return this.normname;
}
public void setNormname(String normname) {
this.normname = normname;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getNormproperties() {
return this.normproperties;
}
public void setNormproperties(Set normproperties) {
this.normproperties = normproperties;
}
public Set getProductnorms() {
return this.productnorms;
}
public void setProductnorms(Set productnorms) {
this.productnorms = productnorms;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -