⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productcustomeritem.java

📁 一个用Java语言实现的库存管理系统
💻 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 + -