📄 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 + -