charge.java
来自「基于jsp的固定资产管理系统,自己做的」· Java 代码 · 共 34 行
JAVA
34 行
package VO;
public class Charge {
private String cost_type;
private int amount;
private String operation;
private int or_de;
public String getCost_type() {
return cost_type;
}
public void setCost_type(String cost_type) {
this.cost_type = cost_type;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
public int getOr_de() {
return or_de;
}
public void setOr_de(int or_de) {
this.or_de = or_de;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?