reserve.java
来自「超市进销存系统,采用mvc+DAO模式编写」· Java 代码 · 共 67 行
JAVA
67 行
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 + =
减小字号Ctrl + -
显示快捷键?