📄 inventory.java
字号:
package org.itfuture.www.po;
/**
* Inventory generated by MyEclipse - Hibernate Tools
*/
public class Inventory implements java.io.Serializable {
// Fields
private String itemid;
private Item item;
private Long qty;
// Constructors
/** default constructor */
public Inventory() {
}
/** full constructor */
public Inventory(Item item, Long qty) {
this.item = item;
this.qty = qty;
}
// Property accessors
public String getItemid() {
return this.itemid;
}
public void setItemid(String itemid) {
this.itemid = itemid;
}
public Item getItem() {
return this.item;
}
public void setItem(Item item) {
this.item = item;
}
public Long getQty() {
return this.qty;
}
public void setQty(Long qty) {
this.qty = qty;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -