unitinfobean.java

来自「一个基于jsp+javabean+servet实现的网上项目申报系统」· Java 代码 · 共 136 行

JAVA
136
字号
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 + =
减小字号Ctrl + -
显示快捷键?