productitemdetail.java
来自「一个用Java语言实现的库存管理系统」· Java 代码 · 共 67 行
JAVA
67 行
package main.data.domain;
/**
* ProductItemDetail generated by MyEclipse - Hibernate Tools
*/
public class ProductItemDetail implements java.io.Serializable {
// Fields
private Integer id;
private ProductItem productItem;
private ProductDetail productDetail;
// Constructors
/** default constructor */
public ProductItemDetail() {
}
/** full constructor */
public ProductItemDetail(ProductItem productItem, ProductDetail productDetail) {
this.productItem = productItem;
this.productDetail = productDetail;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public ProductItem getProductItem() {
return this.productItem;
}
public void setProductItem(ProductItem productItem) {
this.productItem = productItem;
}
public ProductDetail getProductDetail() {
return this.productDetail;
}
public void setProductDetail(ProductDetail productDetail) {
this.productDetail = productDetail;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?