FunctionInfo.java
1.23 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
package com.cjs.cms.model.admin;
import java.util.List;
import com.cjs.cms.model.BaseInfo;
/***
* 功能管理
* @author kongmingke
*
*/
public class FunctionInfo extends BaseInfo{
private static final long serialVersionUID = 1L;
private Integer id;
private String functionName;
private String functionDescription;
private String url;
private Integer parentId;
private List<FunctionInfo> children;
public List<FunctionInfo> getChildren() {
return children;
}
public void setChildren(List<FunctionInfo> children) {
this.children = children;
}
public String getFunctionDescription() {
return functionDescription;
}
public void setFunctionDescription(String functionDescription) {
this.functionDescription = functionDescription;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getFunctionName() {
return functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Integer getParentId() {
return parentId;
}
public void setParentId(Integer parentId) {
this.parentId = parentId;
}
}