ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
package com.vci.client.omd.versionrule.bean;
 
import com.vci.corba.omd.vrm.VersionRule;
 
 
public class ClientVersionRule {
    private String id = "";
    private String name = "";
    private String tag = "";
    private String jumpCharacter = "";
    private String initialValue = "";
    private int stepLength = 1;
    private String prefixion = "";
    private String suffix = "";
    private String describe = "";
    private String associated = "";
    
    private VersionRule versionRule = null;
 
    public ClientVersionRule() {}
 
    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 getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getJumpCharacter() {
        return jumpCharacter;
    }
 
    public void setJumpCharacter(String jumpCharacter) {
        this.jumpCharacter = jumpCharacter;
    }
 
    public String getInitialValue() {
        return initialValue;
    }
 
    public void setInitialValue(String initialValue) {
        this.initialValue = initialValue;
    }
 
    public int getStepLength() {
        return stepLength;
    }
 
    public void setStepLength(int stepLength) {
        this.stepLength = stepLength;
    }
 
    public String getPrefixion() {
        return prefixion;
    }
 
    public void setPrefixion(String prefixion) {
        this.prefixion = prefixion;
    }
 
    public String getSuffix() {
        return suffix;
    }
 
    public void setSuffix(String suffix) {
        this.suffix = suffix;
    }
 
    public String getDescribe() {
        return describe;
    }
 
    public void setDescribe(String describe) {
        this.describe = describe;
    }
 
    public String getAssociated() {
        return associated;
    }
 
    public void setAssociated(String associated) {
        this.associated = associated;
    }
 
    public VersionRule getVersionRule() {
        return versionRule;
    }
 
    public void setVersionRule(VersionRule versionRule) {
        this.versionRule = versionRule;
    }
    
    
 
}