?? employee.java
字號:
package com.wrox;public class Employee { protected String username; protected String password; protected String name; protected String department; protected String rolename; protected String phone; protected String email; protected Integer depid; protected Integer roleid; public void setUsername(String username) { this.username = username; } public String getUsername() { return username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setDepartment(String department) { this.department = department; } public String getDepartment() { return this.department; } public void setRolename(String rolename) { this.rolename = rolename; } public String getRolename() { return rolename; } public void setPhone(String phone) { this.phone = phone; } public String getPhone() { return phone; } public void setEmail(String email) { this.email = email; } public String getEmail() { return email; } public void setDepid(Integer depid) { this.depid = depid; } public Integer getDepid() { return depid; } public void setRoleid(Integer roleid) { this.roleid = roleid; } public Integer getRoleid() { return roleid; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -