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

📄 unitinfobean.java

📁 一个基于jsp+javabean+servet实现的网上项目申报系统
💻 JAVA
字号:
package unitinfo;

import java.io.*;
import java.util.*;

/**
 * This class contains information about an unit.
 *
 * @author BinHong Xie, 
 * @version 1.0
 */
public class unitInfoBean implements Serializable {
    // Properties
    private String unitID;
    private String unitName;    
    private String unitAddr;
    private String password;
    private String bank;
    private String bankAcc;    
    private String accNum;
    private String unitType;

    /**
     * Returns the unitID property value.
     */
    public String getUnitID() {
        return unitID;
    }

    /**
     * Sets the unitID property value.
     */
    public void setUnitID(String unitID) {
        this.unitID = unitID;
    }

    /**
     * Returns the unitName property value.
     */
    public String getUnitName() {
        return unitName;
    }

    /**
     * Sets the unitName property value.
     */
    public void setUnitName(String unitName) {
        this.unitName = unitName;
    }

    /**
     * Returns the unitAddr property value.
     */
    public String getUnitAddr() {
        return unitAddr;
    }

    /**
     * Sets the unitAddr property value.
     */
    public void setUnitAddr(String unitAddr) {
        this.unitAddr = unitAddr;
    }

    /**
     * Returns the password property value.
     */
    public String getPassword() {
        return password;
    }

    /**
     * Sets the password property value.
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * Returns the bank property value.
     */
    public String getBank() {
        return bank;
    }

    /**
     * Sets the bank property value.
     */
    public void setBank(String bank) {
        this.bank = bank;
    }

    /**
     * Returns the bankAcc property value.
     */
    public String getBankAcc() { 
        return bankAcc;
    }

    /**
     * Sets the bankAcc property value.
     */
    public void setBankAcc(String bankAcc) {	
	    this.bankAcc = bankAcc;	
	}  
    
    /**
     * Returns the accNum property value.
     */
    public String getAccNum() {
        return accNum;
    }

    /**
     * Sets the accNum property value.
     */
    public void setAccNum(String accNum) {
        this.accNum = accNum;
    }
    
    /**
     * Returns the unitType property value.
     */
    public String getUnitType() {
        return unitType;
    }

    /**
     * Sets the unitType property value.
     */
    public void setUnitType(String unitType) {
        this.unitType = unitType;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -