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.ubcs.code.dto;
 
 
import com.vci.ubcs.starter.revision.model.BaseModel;
 
/**
 * 记录工艺推送过来的数据信息数据传输对象
 *
 * @author weidy
 * @date 2022-04-05
 */
public class DockingPreApplyDataDTO extends BaseModel {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707119386802588L;
 
    /**
     * 申请oid
     */
    private String preapplyoid;
 
    /**
     * 唯一标识,工艺里边的图号
     */
    private String uniquecode;
 
    /**
     * 主题库编号
     */
    private String type;
 
    /**
     * 系统编号
     */
    private String systemid;
 
    /**
     * 正在使用标志
     */
    private String useddflag;
 
    /**
     * 关联分类操作过后,记录的关联分类oid
     */
    private String classifyoid;
 
    /**
     * 关联分类操作过后,记录的关联分类名称
     */
    private String classifyname;
 
    /**
     * 申请成功后的编码,或者已经存在的编码
     */
    private String num;
    /**
     * 规格型号
     */
    private String model;
    /**
     * 零件类型
     */
    private String parttype;
    /**
     * 计量单位
     */
    private String unit;
 
    /**
     * 单重
     */
    private String weight;
 
    /**
     * 是否重要件
     */
    private String importantPart;
 
    /**
     * 是否关键件
     */
    private String keyPart;
    /**
     * 数据处理返回状态码
     */
    private String datacode;
 
    /**
     * 数据处理返回信息
     */
    private String datamsg;
 
    public String getPreapplyoid() {
        return preapplyoid;
    }
 
    public void setPreapplyoid(String preapplyoid) {
        this.preapplyoid = preapplyoid;
    }
 
    public String getUniquecode() {
        return uniquecode;
    }
 
    public void setUniquecode(String uniquecode) {
        this.uniquecode = uniquecode;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getSystemid() {
        return systemid;
    }
 
    public void setSystemid(String systemid) {
        this.systemid = systemid;
    }
 
    public String getUseddflag() {
        return useddflag;
    }
 
    public void setUseddflag(String useddflag) {
        this.useddflag = useddflag;
    }
 
    public String getClassifyoid() {
        return classifyoid;
    }
 
    public void setClassifyoid(String classifyoid) {
        this.classifyoid = classifyoid;
    }
 
    public String getClassifyname() {
        return classifyname;
    }
 
    public void setClassifyname(String classifyname) {
        this.classifyname = classifyname;
    }
 
    public String getNum() {
        return num;
    }
 
    public void setNum(String num) {
        this.num = num;
    }
 
    public String getDatacode() {
        return datacode;
    }
 
    public void setDatacode(String datacode) {
        this.datacode = datacode;
    }
 
    public String getDatamsg() {
        return datamsg;
    }
 
    public void setDatamsg(String datamsg) {
        this.datamsg = datamsg;
    }
 
    public String getModel() {
        return model;
    }
 
    public void setModel(String model) {
        this.model = model;
    }
 
    public String getParttype() {
        return parttype;
    }
 
    public void setParttype(String parttype) {
        this.parttype = parttype;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public String getWeight() {
        return weight;
    }
 
    public void setWeight(String weight) {
        this.weight = weight;
    }
 
    public String getImportantPart() {
        return importantPart;
    }
 
    public void setImportantPart(String importantPart) {
        this.importantPart = importantPart;
    }
 
    public String getKeyPart() {
        return keyPart;
    }
 
    public void setKeyPart(String keyPart) {
        this.keyPart = keyPart;
    }
 
    @Override
    public String toString() {
        return "DockingPreApplyDataDTO{" +
                "preapplyoid='" + preapplyoid + '\'' +
                ", uniquecode='" + uniquecode + '\'' +
                ", type='" + type + '\'' +
                ", systemid='" + systemid + '\'' +
                ", useddflag='" + useddflag + '\'' +
                ", classifyoid='" + classifyoid + '\'' +
                ", classifyname='" + classifyname + '\'' +
                ", num='" + num + '\'' +
                ", model='" + model + '\'' +
                ", parttype='" + parttype + '\'' +
                ", unit='" + unit + '\'' +
                ", weight='" + weight + '\'' +
                ", importantPart='" + importantPart + '\'' +
                ", keyPart='" + keyPart + '\'' +
                ", datacode='" + datacode + '\'' +
                ", datamsg='" + datamsg + '\'' +
                "} " + super.toString();
    }
}