yuxc
2025-01-15 9503c595d3508c80cbbacf6e69dca459771d250e
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
package com.vci.bo;
 
/**
 * 业务类型或者链接类型扫描属性的时候使用的传输对象
 * @author weidy
 * @date 2019/12/11 11:13 AM
 */
public class BtmOrLinkProcessAttributeInfo {
 
    /**
     * 类的名称
     */
    private String id;
 
    /**
     * 类的显示名称
     */
    private String name;
 
    /**
     * 是否链接类型
     */
    private boolean linkType = false;
 
    /**
     * 是否控制版本
     */
    private boolean revision;
 
    /**
     * 是否控制生命周期
     */
    private boolean lifeCycle;
 
    /**
     * 是否控制密级
     */
    private boolean secret;
 
    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 boolean isLinkType() {
        return linkType;
    }
 
    public void setLinkType(boolean linkType) {
        this.linkType = linkType;
    }
 
    public boolean isRevision() {
        return revision;
    }
 
    public void setRevision(boolean revision) {
        this.revision = revision;
    }
 
    public boolean isLifeCycle() {
        return lifeCycle;
    }
 
    public void setLifeCycle(boolean lifeCycle) {
        this.lifeCycle = lifeCycle;
    }
 
    public boolean isSecret() {
        return secret;
    }
 
    public void setSecret(boolean secret) {
        this.secret = secret;
    }
 
    @Override
    public String toString() {
        return "BtmOrLinkProcessAttributeInfo{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", linkType=" + linkType +
                ", revision=" + revision +
                ", lifeCycle=" + lifeCycle +
                ", secret=" + secret +
                '}';
    }
}