productcustomeritem.java

来自「一个用Java语言实现的库存管理系统」· Java 代码 · 共 67 行

JAVA
67
字号
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 + =
减小字号Ctrl + -
显示快捷键?