📄 merchantgoodsstoragebean.java
字号:
package com.mole.struts.bean;
public class MerchantGoodsStorageBean {
private String id;
private String name;
private String type;
private int amount;
private int lastStockAmount;
private int totalAmount;
private String stockDate;
public String getStockDate() {
return stockDate;
}
public void setStockDate(String stockDate) {
this.stockDate = stockDate;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public int getLastStockAmount() {
return lastStockAmount;
}
public void setLastStockAmount(int lastStockAmount) {
this.lastStockAmount = lastStockAmount;
}
public int getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(int totalAmount) {
this.totalAmount = totalAmount;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -