Ldc
2024-04-07 0652600959e5e3b5796fb6e8da129704ca95347a
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.vci.web.dto;
 
/**
 * 往业务类型中添加/移除属性的数据传输对象
 * @author weidy
 * @date 2019/10/14 16:17
 */
public class OsBtmTypeLinkAttributesDTO implements java.io.Serializable{
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 7635248565930948807L;
 
    /**
     * 主键
     */
    private String oid;
 
    /**
     * 属性的字段名称
     */
    private String id;
 
    /**
     * 属性的中文名称
     */
    private String name;
 
    /**
     * 属性的长度
     */
    private Integer attributeLength;
 
    /**
     * 是否可以为空
     */
    private boolean nullableFlag;
 
    /**
     * 默认值
     */
    private String defaultValue;
 
    /**
     * 小数精度位数
     */
    private Integer precisionLength;
 
    /**
     * 刻度
     */
    private Integer scaleLength;
 
    /**
     * 取值范围
     */
    private String range;
 
    /**
     * 属性在本业务类型中的描述
     */
    private String description;
 
    /**
     * 数据类型
     */
    private String attrDataType;
 
    /**
     * 参照业务类型
     */
    private String referBtmTypeId;
 
    /**
     * 参照业务类型名称
     */
    private String referBtmTypeName;
 
    /**
     * 枚举编号
     */
    private String enumId;
 
    /**
     * 枚举名称
     */
    private String enumName;
 
    /**
     * 是否为删除属性
     */
    private boolean removeAttribute;
 
    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 Integer getAttributeLength() {
        return attributeLength;
    }
 
    public void setAttributeLength(Integer attributeLength) {
        this.attributeLength = attributeLength;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public boolean isRemoveAttribute() {
        return removeAttribute;
    }
 
    public void setRemoveAttribute(boolean removeAttribute) {
        this.removeAttribute = removeAttribute;
    }
 
    public String getOid() {
        return oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getAttrDataType() {
        return attrDataType;
    }
 
    public void setAttrDataType(String attrDataType) {
        this.attrDataType = attrDataType;
    }
 
    public String getReferBtmTypeId() {
        return referBtmTypeId;
    }
 
    public void setReferBtmTypeId(String referBtmTypeId) {
        this.referBtmTypeId = referBtmTypeId;
    }
 
    public String getReferBtmTypeName() {
        return referBtmTypeName;
    }
 
    public void setReferBtmTypeName(String referBtmTypeName) {
        this.referBtmTypeName = referBtmTypeName;
    }
 
    public String getEnumId() {
        return enumId;
    }
 
    public void setEnumId(String enumId) {
        this.enumId = enumId;
    }
 
    public String getEnumName() {
        return enumName;
    }
 
    public void setEnumName(String enumName) {
        this.enumName = enumName;
    }
 
    public boolean isNullableFlag() {
        return nullableFlag;
    }
 
    public void setNullableFlag(boolean nullableFlag) {
        this.nullableFlag = nullableFlag;
    }
 
    public String getDefaultValue() {
        return defaultValue;
    }
 
    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }
 
    public Integer getPrecisionLength() {
        return precisionLength;
    }
 
    public void setPrecisionLength(Integer precisionLength) {
        this.precisionLength = precisionLength;
    }
 
    public String getRange() {
        return range;
    }
 
    public void setRange(String range) {
        this.range = range;
    }
 
    public Integer getScaleLength() {
        return scaleLength;
    }
 
    public void setScaleLength(Integer scaleLength) {
        this.scaleLength = scaleLength;
    }
 
    @Override
    public String toString() {
        return "OsBtmTypeLinkAttributesDTO{" +
                "oid='" + oid + '\'' +
                ", id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", attributeLength=" + attributeLength +
                ", nullableFlag=" + nullableFlag +
                ", defaultValue='" + defaultValue + '\'' +
                ", precisionLength=" + precisionLength +
                ", scaleLength=" + scaleLength +
                ", range='" + range + '\'' +
                ", description='" + description + '\'' +
                ", attrDataType='" + attrDataType + '\'' +
                ", referBtmTypeId='" + referBtmTypeId + '\'' +
                ", referBtmTypeName='" + referBtmTypeName + '\'' +
                ", enumId='" + enumId + '\'' +
                ", enumName='" + enumName + '\'' +
                ", removeAttribute=" + removeAttribute +
                '}';
    }
}