超市进销存系统,采用mvc+DAO模式编写

源代码在线查看: reserve.java

软件大小: 35 K
上传用户: huanghuanl
关键词: mvc DAO 进销存系统 模式
下载地址: 免注册下载 普通下载 VIP

相关代码

				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;
				    }
				   
				
				
				
				
				
				
				
				
				}			

相关资源