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

📄 root.java

📁 are are are are are are are are are are are are
💻 JAVA
字号:
/* * Root.java * * Created on 2006年5月12日, 下午11:08 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package enova.pojo;/** * * @author vlinux */public class Root implements java.io.Serializable {        private Integer id;    private String username;    private String password;        /** Creates a new instance of Root */    public Root(){}        public Root( String username, String password ) {        this.setUsername(username);        this.setPassword(password);    }    public Integer getId() {        return id;    }    public void setId(Integer id) {        this.id = id;    }    public String getUsername() {        return username;    }    public void setUsername(String username) {        this.username = username;    }    public String getPassword() {        return password;    }    public void setPassword(String password) {        this.password = password;    }    }

⌨️ 快捷键说明

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