📄 productcustomeritem.java
字号:
package main.data.domain;
/**
* ProductCustomerItem generated by MyEclipse - Hibernate Tools
*/
public class ProductCustomerItem implements java.io.Serializable {
// Fields
private Integer id;
private ProductCustomer productCustomer;
private ProductItem productItem;
// Constructors
/** default constructor */
public ProductCustomerItem() {
}
/** full constructor */
public ProductCustomerItem(ProductCustomer productCustomer, ProductItem productItem) {
this.productCustomer = productCustomer;
this.productItem = productItem;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public ProductCustomer getProductCustomer() {
return this.productCustomer;
}
public void setProductCustomer(ProductCustomer productCustomer) {
this.productCustomer = productCustomer;
}
public ProductItem getProductItem() {
return this.productItem;
}
public void setProductItem(ProductItem productItem) {
this.productItem = productItem;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -