超市进销存系统,采用mvc+DAO模式编写
源代码在线查看: reserve.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;
}
}