📄 treeviewvo.java
字号:
package com.yuanchung.organize.treeview;
public class TreeviewVo implements java.io.Serializable {
public TreeviewVo() {
super();
// TODO Auto-generated constructor stub
}
private Integer id;
private Integer userId;
private String userName;
private String password;
private String familyName;
private String position;//��λ
private String email;
private String phone;
private String type;
private Integer treeviewId;
private Integer isDeptLead;//
private String department;//������
public TreeviewVo(Integer userId, String userName,
String password, String familyName, String position, String email,
String phone, String type, Integer treeviewId, Integer isDeptLead,
String department) {
this.userId = userId;
this.userName = userName;
this.password = password;
this.familyName = familyName;
this.position = position;
this.email = email;
this.phone = phone;
this.type = type;
this.treeviewId = treeviewId;
this.isDeptLead = isDeptLead;
this.department = department;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
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;
}
public String getFamilyName() {
return familyName;
}
public void setFamilyName(String familyName) {
this.familyName = familyName;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Integer getTreeviewId() {
return treeviewId;
}
public void setTreeviewId(Integer treeviewId) {
this.treeviewId = treeviewId;
}
public Integer getIsDeptLead() {
return isDeptLead;
}
public void setIsDeptLead(Integer isDeptLead) {
this.isDeptLead = isDeptLead;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -