dangsn
2024-06-06 8c8c59c1f2005fa3ca89ac2117ca1a3c0c618913
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
package com.vci.web.pageModel;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 流程中可以执行的用户
 * --如果有多个角色和多个部门的时候,第一层节点会是角色或者部门
 * @author weidy
 *
 */
public class ProcessUserVO implements java.io.Serializable{
    
    public ProcessUserVO(){
        
    }
    
    public ProcessUserVO(String oid, String name, String id, String type){
        this.oid = oid;
        this.name = name;
        this.id = id;
        this.type = type;
    }
 
    /**
     * 
     */
    private static final long serialVersionUID = 9016814293362324477L;
    
    private String oid;
    
    private String name;
    
    private String id;
    
    private String type ="user";
 
    private int secret = -1;
 
    private String secretText = "";
 
    private boolean leaf;
 
 
    
    private List<ProcessUserVO> children = new ArrayList<ProcessUserVO>();
 
    public String getOid() {
        return oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public List<ProcessUserVO> getChildren() {
        return children;
    }
 
    public void setChildren(List<ProcessUserVO> children) {
        this.children = children;
    }
 
    public int getSecret() {
        return secret;
    }
 
    public void setSecret(int secret) {
        this.secret = secret;
    }
 
    public String getSecretText() {
        return secretText;
    }
 
    public void setSecretText(String secretText) {
        this.secretText = secretText;
    }
 
    public boolean isLeaf() {
        return leaf;
    }
 
    public void setLeaf(boolean leaf) {
        this.leaf = leaf;
    }
}