package org.jeecg.modules.lims.entity;
|
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 部门表 封装树结构的部门的名称的实体类
|
* <p>
|
*
|
* @Author Steve
|
* @Since 2019-01-22
|
*
|
*/
|
public class DepartIdModel implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
// 主键ID
|
private String key;
|
|
// 主键ID
|
private String value;
|
|
// 部门名称
|
private String title;
|
|
List<DepartIdModel> children = new ArrayList<>();
|
|
|
|
|
|
public List<DepartIdModel> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<DepartIdModel> children) {
|
this.children = children;
|
}
|
|
public static long getSerialVersionUID() {
|
return serialVersionUID;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
}
|