zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
/**
 * SchWorkorderCraft entity. @author MyEclipse Persistence Tools
 */
 
public class SchWorkorderCraft implements java.io.Serializable {
 
    // Fields
 
    private String id;
    private SchWorkorder schWorkorder;
    private String paramId;//
    private String parameterCode;//工艺参数代码
    private String parameterName;//工艺参数名称
    private Long pcp;//是否过程控制参数
    private Long qc;//是否检验项目
    private Double pval;//置信水平下限(P值)
    private Double zval;//Z值
    private Double cpk;//CPK值
    private Double cp;//CP值
    private Double pp;//PP值
    private Double ppk;//PPK值
    private Double ppm;//PPM值
    private Double std;//标准值
    private Double uval;//标准值允差上限
    private Double lval;//标准值允差下限
    private Double cuval;//控制线上限
    private Double clval;//控制线下限
    private Double wuval;//警戒线上限
    private Double wlval;//警戒线下限
    private String unit;//单位
    private Long dtm;//是否需要判定不合格
    private Double dtmuval;//不合格上限
    private Double dtmlval;//不合格下限
    private Long paramType;//计数类型    1 计数  2 计量
    
    private String effectRemark;//生效备注
    private Date effectTime;//生效日期
    private String parameterSetRevision;//版本号
    private String materialCode;//物料代码id(牌号)
    private String dcsType;// DCS类型--cp:成品 cxcp:成型成品 rol:卷接
    private int del; //状态
    private String ordCode ;//0:重量   1:圆周   2:圆度  3:长度  4:吸阻   5:总通风率  6:硬度
    // Constructors
    
    public SchWorkorderCraft(String id) {
        super();
        this.id = id;
    }
 
    public int getDel() {
        return del;
    }
 
    public void setDel(int del) {
        this.del = del;
    }
 
    
 
    public String getOrdCode() {
        return ordCode;
    }
 
    public void setOrdCode(String ordCode) {
        this.ordCode = ordCode;
    }
 
    public String getDcsType() {
        return dcsType;
    }
 
    public void setDcsType(String dcsType) {
        this.dcsType = dcsType;
    }
 
    public String getParameterCode() {
        return parameterCode;
    }
 
    public void setParameterCode(String parameterCode) {
        this.parameterCode = parameterCode;
    }
 
    public String getParameterName() {
        return parameterName;
    }
 
    public void setParameterName(String parameterName) {
        this.parameterName = parameterName;
    }
    public String getEffectRemark() {
        return effectRemark;
    }
 
    public void setEffectRemark(String effectRemark) {
        this.effectRemark = effectRemark;
    }
 
    public Date getEffectTime() {
        return effectTime;
    }
 
    public void setEffectTime(Date effectTime) {
        this.effectTime = effectTime;
    }
 
    public String getParameterSetRevision() {
        return parameterSetRevision;
    }
 
    public void setParameterSetRevision(String parameterSetRevision) {
        this.parameterSetRevision = parameterSetRevision;
    }
    public String getMaterialCode() {
        return materialCode;
    }
 
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
 
    /** default constructor */
    public SchWorkorderCraft() {
    }
 
    /** full constructor */
    public SchWorkorderCraft(SchWorkorder schWorkorder, String paramId,
            Long pcp, Long qc, Double pval, Double zval, Double cpk, Double cp,
            Double pp, Double ppk, Double ppm, Double std, Double uval,
            Double lval, Double cuval, Double clval, Double wuval,
            Double wlval, String unit, Long dtm, Double dtmuval,
            Double dtmlval, Long paramType) {
        this.schWorkorder = schWorkorder;
        this.paramId = paramId;
        this.pcp = pcp;
        this.qc = qc;
        this.pval = pval;
        this.zval = zval;
        this.cpk = cpk;
        this.cp = cp;
        this.pp = pp;
        this.ppk = ppk;
        this.ppm = ppm;
        this.std = std;
        this.uval = uval;
        this.lval = lval;
        this.cuval = cuval;
        this.clval = clval;
        this.wuval = wuval;
        this.wlval = wlval;
        this.unit = unit;
        this.dtm = dtm;
        this.dtmuval = dtmuval;
        this.dtmlval = dtmlval;
        this.paramType = paramType;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public SchWorkorder getSchWorkorder() {
        return this.schWorkorder;
    }
 
    public void setSchWorkorder(SchWorkorder schWorkorder) {
        this.schWorkorder = schWorkorder;
    }
 
    public String getParamId() {
        return this.paramId;
    }
 
    public void setParamId(String paramId) {
        this.paramId = paramId;
    }
 
    public Long getPcp() {
        return this.pcp;
    }
 
    public void setPcp(Long pcp) {
        this.pcp = pcp;
    }
 
    public Long getQc() {
        return this.qc;
    }
 
    public void setQc(Long qc) {
        this.qc = qc;
    }
 
    public Double getPval() {
        return this.pval;
    }
 
    public void setPval(Double pval) {
        this.pval = pval;
    }
 
    public Double getZval() {
        return this.zval;
    }
 
    public void setZval(Double zval) {
        this.zval = zval;
    }
 
    public Double getCpk() {
        return this.cpk;
    }
 
    public void setCpk(Double cpk) {
        this.cpk = cpk;
    }
 
    public Double getCp() {
        return this.cp;
    }
 
    public void setCp(Double cp) {
        this.cp = cp;
    }
 
    public Double getPp() {
        return this.pp;
    }
 
    public void setPp(Double pp) {
        this.pp = pp;
    }
 
    public Double getPpk() {
        return this.ppk;
    }
 
    public void setPpk(Double ppk) {
        this.ppk = ppk;
    }
 
    public Double getPpm() {
        return this.ppm;
    }
 
    public void setPpm(Double ppm) {
        this.ppm = ppm;
    }
 
    public Double getStd() {
        return this.std;
    }
 
    public void setStd(Double std) {
        this.std = std;
    }
 
    public Double getUval() {
        return this.uval;
    }
 
    public void setUval(Double uval) {
        this.uval = uval;
    }
 
    public Double getLval() {
        return this.lval;
    }
 
    public void setLval(Double lval) {
        this.lval = lval;
    }
 
    public Double getCuval() {
        return this.cuval;
    }
 
    public void setCuval(Double cuval) {
        this.cuval = cuval;
    }
 
    public Double getClval() {
        return this.clval;
    }
 
    public void setClval(Double clval) {
        this.clval = clval;
    }
 
    public Double getWuval() {
        return this.wuval;
    }
 
    public void setWuval(Double wuval) {
        this.wuval = wuval;
    }
 
    public Double getWlval() {
        return this.wlval;
    }
 
    public void setWlval(Double wlval) {
        this.wlval = wlval;
    }
 
    public String getUnit() {
        return this.unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public Long getDtm() {
        return this.dtm;
    }
 
    public void setDtm(Long dtm) {
        this.dtm = dtm;
    }
 
    public Double getDtmuval() {
        return this.dtmuval;
    }
 
    public void setDtmuval(Double dtmuval) {
        this.dtmuval = dtmuval;
    }
 
    public Double getDtmlval() {
        return this.dtmlval;
    }
 
    public void setDtmlval(Double dtmlval) {
        this.dtmlval = dtmlval;
    }
 
    public Long getParamType() {
        return this.paramType;
    }
 
    public void setParamType(Long paramType) {
        this.paramType = paramType;
    }
 
}