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

📄 productshort.java

📁 一个用Java语言实现的库存管理系统
💻 JAVA
字号:
package main.data.domain;

import java.util.Date;


/**
 * Productshort generated by MyEclipse - Hibernate Tools
 */

public class Productshort  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private Integer productItemId;
     private Date date;
     private Short auditing;


    // Constructors

    /** default constructor */
    public Productshort() {
    }

	/** minimal constructor */
    public Productshort(Short auditing) {
        this.auditing = auditing;
    }
    
    /** full constructor */
    public Productshort(Integer productItemId, Date date, Short auditing) {
        this.productItemId = productItemId;
        this.date = date;
        this.auditing = auditing;
    }

   
    // Property accessors

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getProductItemId() {
        return this.productItemId;
    }
    
    public void setProductItemId(Integer productItemId) {
        this.productItemId = productItemId;
    }

    public Date getDate() {
        return this.date;
    }
    
    public void setDate(Date date) {
        this.date = date;
    }

    public Short getAuditing() {
        return this.auditing;
    }
    
    public void setAuditing(Short auditing) {
        this.auditing = auditing;
    }
   








}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -