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

📄 userbean.java

📁 一个Java编写的挺不错的人事管理系统
💻 JAVA
字号:
package work;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class UserBean {
    private String username;
    private String password;
     private String testpassword;
    private String type;
    public UserBean() {
        try {
            jbInit();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
    }

    public void setName(String username) {
        this.username = username;
    }

    public void setPassword(String password) {
        this.password = password;
    }
    public void setTestPassword(String testpassword) {
           this.testpassword = testpassword;
    }
    public void setType(String type) {
        this.type = type;
    }

    public String getName() {
        return username;
    }

    public String getPassword() {
        return password;
    }
    public String getTestPassword() {
           return testpassword;
    }
    public String getType() {
        return type;
    }
}

⌨️ 快捷键说明

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