📄 showdeptvo.java
字号:
package com.tb.log.model.bo.vo.dept;
import java.util.Set;
public class ShowDeptVo {
int dept_id = 0;
int dept_code = 0;
String dept_name ="";
String supper_id ="";
String dept_grade ="";
String creat_date ="";
String dept_desc ="";
String dept_state ="";
int currentPage = 1;
Set users = null;
public ShowDeptVo() {
super();
// TODO Auto-generated constructor stub
}
public ShowDeptVo(int dept_id,int dept_code,String dept_name,String supper_id,
String dept_grade,String creat_date ,String dept_state,String dept_desc,int currentPage) {
super();
this.dept_id = dept_id;
this.dept_code = dept_code;
this.dept_name = dept_name;
this.supper_id = supper_id;
this.dept_grade = dept_grade;
this.creat_date = creat_date;
this.dept_state = dept_state;
this.dept_desc = dept_desc;
this.currentPage = currentPage;
}
public int getDept_id() {
return dept_id;
}
public void setDept_id(int dept_id) {
this.dept_id = dept_id;
}
public int getDept_code() {
return dept_code;
}
public void setDept_code(int dept_code) {
this.dept_code = dept_code;
}
public String getDept_name() {
return dept_name;
}
public void setDept_name(String dept_name) {
this.dept_name = dept_name;
}
public String getSupper_id() {
return supper_id;
}
public void setSupper_id(String supper_id) {
this.supper_id = supper_id;
}
public String getDept_grade() {
return dept_grade;
}
public void setDept_grade(String dept_grade) {
this.dept_grade = dept_grade;
}
public String getCreat_date() {
return creat_date;
}
public void setCreat_date(String creat_date) {
this.creat_date = creat_date;
}
public String getDept_state() {
return dept_state;
}
public void setDept_state(String dept_state) {
this.dept_state = dept_state;
}
public String getDept_desc() {
return dept_desc;
}
public void setDept_desc(String dept_desc) {
this.dept_desc = dept_desc;
}
public Set getUsers() {
return users;
}
public void setUsers(Set users) {
this.users = users;
}
public int getCurrentPage() {
return currentPage;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -