adminbean.java

来自「spring+struts+hibernate做的银行系统」· Java 代码 · 共 63 行

JAVA
63
字号
/*
 * Created on 2006-3-24
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.com.tym.admin;

import java.io.Serializable;

/**
 * @author Boss
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class AdminBean implements  Serializable {
    
    private int adminId=0;
    private String adminName=null;
    private String adminPwd=null;
    
    
    
    /**
     * @return Returns the adminId.
     */
    public int getAdminId() {
        return adminId;
    }
    /**
     * @param adminId The adminId to set.
     */
    public void setAdminId(int adminId) {
        this.adminId = adminId;
    }
    /**
     * @return Returns the adminName.
     */
    
    public String getAdminName() {
        return adminName;
    }
    /**
     * @param adminName The adminName to set.
     */
    public void setAdminName(String adminName) {
        this.adminName = adminName;
    }
    /**
     * @return Returns the adminPwd.
     */
    public String getAdminPwd() {
        return adminPwd;
    }
    /**
     * @param adminPwd The adminPwd to set.
     */
    public void setAdminPwd(String adminPwd) {
        this.adminPwd = adminPwd;
    }
}

⌨️ 快捷键说明

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