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

📄 reserve.java

📁 超市进销存系统,采用mvc+DAO模式编写
💻 JAVA
字号:
package mybaobao;



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

public class Reserve  implements java.io.Serializable {


    // Fields    

     private Integer resId;
     private Integer wareId;
     private Integer resQty;


    // Constructors

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

    
    /** full constructor */
    public Reserve(Integer wareId, Integer resQty) {
        this.wareId = wareId;
        this.resQty = resQty;
    }

   
    // Property accessors

    public Integer getResId() {
        return this.resId;
    }
    
    public void setResId(Integer resId) {
        this.resId = resId;
    }

    public Integer getWareId() {
        return this.wareId;
    }
    
    public void setWareId(Integer wareId) {
        this.wareId = wareId;
    }

    public Integer getResQty() {
        return this.resQty;
    }
    
    public void setResQty(Integer resQty) {
        this.resQty = resQty;
    }
   








}

⌨️ 快捷键说明

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