DepartIdModel.java
1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.skua.modules.system.model;
import com.skua.modules.system.entity.SysDepart;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* 部门表 封装树结构的部门的名称的实体类
*
*/
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<>();
/**
* 将SysDepartTreeModel的部分数据放在该对象当中
* @param treeModel
* @return
*/
public DepartIdModel convert(com.skua.modules.system.model.SysDepartTreeModel treeModel) {
this.key = treeModel.getId();
this.value = treeModel.getId();
this.title = treeModel.getDepartName();
return this;
}
/**
* 该方法为用户部门的实现类所使用
* @param sysDepart
* @return
*/
public DepartIdModel convertByUserDepart(SysDepart sysDepart) {
this.key = sysDepart.getId();
this.value = sysDepart.getId();
this.title = sysDepart.getDepartName();
return this;
}
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;
}
}