⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vireobj.java

📁 一个JAVA作的excel读写程序
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -