vireobj.java
来自「一个JAVA作的excel读写程序」· Java 代码 · 共 156 行
JAVA
156 行
package excel;
public class VireObj {
private String orgNo;
private String orgName;
private int openAcc;
private int destoryAcc;
private int totalAcc;
private int monthInCount;
private double monthInMoney;
private int monthOutCount;
private double monthOutMoney;
private double totalInMoney;
/**
* @return the orgNo
*/
public String getOrgNo() {
return orgNo;
}
/**
* @param orgNo the orgNo to set
*/
public void setOrgNo(String orgNo) {
this.orgNo = orgNo;
}
/**
* @return the orgName
*/
public String getOrgName() {
return orgName;
}
/**
* @param orgName the orgName to set
*/
public void setOrgName(String orgName) {
this.orgName = orgName;
}
/**
* @return the openAcc
*/
public int getOpenAcc() {
return openAcc;
}
/**
* @param openAcc the openAcc to set
*/
public void setOpenAcc(int openAcc) {
this.openAcc = openAcc;
}
/**
* @return the destoryAcc
*/
public int getDestoryAcc() {
return destoryAcc;
}
/**
* @param destoryAcc the destoryAcc to set
*/
public void setDestoryAcc(int destoryAcc) {
this.destoryAcc = destoryAcc;
}
/**
* @return the totalAcc
*/
public int getTotalAcc() {
return totalAcc;
}
/**
* @param totalAcc the totalAcc to set
*/
public void setTotalAcc(int totalAcc) {
this.totalAcc = totalAcc;
}
/**
* @return the monthInCount
*/
public int getMonthInCount() {
return monthInCount;
}
/**
* @param monthInCount the monthInCount to set
*/
public void setMonthInCount(int monthInCount) {
this.monthInCount = monthInCount;
}
/**
* @return the monthOutCount
*/
public int getMonthOutCount() {
return monthOutCount;
}
/**
* @param monthOutCount the monthOutCount to set
*/
public void setMonthOutCount(int monthOutCount) {
this.monthOutCount = monthOutCount;
}
/**
* @return the monthInMoney
*/
public double getMonthInMoney() {
return monthInMoney;
}
/**
* @param monthInMoney the monthInMoney to set
*/
public void setMonthInMoney(double monthInMoney) {
this.monthInMoney = monthInMoney;
}
/**
* @return the monthOutMoney
*/
public double getMonthOutMoney() {
return monthOutMoney;
}
/**
* @param monthOutMoney the monthOutMoney to set
*/
public void setMonthOutMoney(double monthOutMoney) {
this.monthOutMoney = monthOutMoney;
}
/**
* @return the totalInMoney
*/
public double getTotalInMoney() {
return totalInMoney;
}
/**
* @param totalInMoney the totalInMoney to set
*/
public void setTotalInMoney(double totalInMoney) {
this.totalInMoney = totalInMoney;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?