📄 productnorm.java
字号:
package tarena.entity;
/**
* Productnorm entity.
*
* @author MyEclipse Persistence Tools
*/
public class Productnorm implements java.io.Serializable {
// Fields
private Integer id;
private Norms norms;
private Normproperty normproperty;
private Product product;
// Constructors
/** default constructor */
public Productnorm() {
}
/** full constructor */
public Productnorm(Norms norms, Normproperty normproperty, Product product) {
this.norms = norms;
this.normproperty = normproperty;
this.product = product;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Norms getNorms() {
return this.norms;
}
public void setNorms(Norms norms) {
this.norms = norms;
}
public Normproperty getNormproperty() {
return this.normproperty;
}
public void setNormproperty(Normproperty normproperty) {
this.normproperty = normproperty;
}
public Product getProduct() {
return this.product;
}
public void setProduct(Product product) {
this.product = product;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -