📄 inventory.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 库存信息数据库映射
* @author jonson
*
*/
public class Inventory extends BaseVo {
private String itemid;//商品ID
private long qty;//库存量
/**
* @return the itemid
*/
public String getItemid() {
return itemid;
}
/**
* @param itemid the itemid to set
*/
public void setItemid(String itemid) {
this.itemid = itemid;
}
/**
* @return the qty
*/
public long getQty() {
return qty;
}
/**
* @param qty the qty to set
*/
public void setQty(long qty) {
this.qty = qty;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -