zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package cn.autoform.web.client.bean;
 
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 组织机构
 * @author liush
 *
 */
 
public class Organization implements Serializable {
    
    
    /**
     * 上级id
     */
    private String parentId;
    
    /**
     * 用户集
     */
    private List<User> users;
    
    /**
     * 角色集
     */
    private List<Position> positions;
    
    /**
     * 子部门集
     */
    private List<Organization> children;
    
    private String phone;
    
    /**
     * 机构id
     */
    private String id;
    
    /**
     * 机构名称
     */
    private String name;
    
    /**
     * 机构code
     */
    private String code;
    
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    public List<User> getUsers() {
        return users;
    }
 
    public void setUsers(List<User> users) {
        this.users = users;
    }
 
    public List<Position> getPositions() {
        return positions;
    }
 
    public void setPositions(List<Position> positions) {
        this.positions = positions;
    }
 
    public List<Organization> getChildren() {
        return children;
    }
 
    public void setChildren(List<Organization> children) {
        this.children = children;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    
}