📄 departmenttree.java
字号:
package com.jlobo.web.beans;
public class DepartmentTree {
private Long id;
private Long parent;
private String _class;
private String name;
private String localName;
private Long level;
private Long sort;
private Long status;
private String type;
public DepartmentTree(){
}
public DepartmentTree(Long id,Long parent,String _class,String name,String localName,String type,Long level,Long sort,Long status){
this.id = id;
this.parent = parent;
this._class = _class;
this.name = name;
this.localName = localName;
this.level = level;
this.type = type;
this.sort = sort;
this.status = status;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getParent() {
return parent;
}
public void setParent(Long parent) {
this.parent = parent;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLocalName() {
return localName;
}
public void setLocalName(String localName) {
this.localName = localName;
}
public Long getLevel() {
return level;
}
public void setLevel(Long level) {
this.level = level;
}
public Long getSort() {
return sort;
}
public void setSort(Long sort) {
this.sort = sort;
}
public Long getStatus() {
return status;
}
public void setStatus(Long status) {
this.status = status;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String get_class() {
return _class;
}
public void set_class(String _class) {
this._class = _class;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -