zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.pms.sch.workorder.beans;
 
import java.util.Date;
 
import com.shlanbao.tzsc.base.mapping.SchWorkorder;
 
/**
 * 工艺参数实体
 * @author Leejean
 * @create 2014年11月18日下午4:21:29
 */
public class CraftBean {
 
    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(牌号)
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public SchWorkorder getSchWorkorder() {
        return schWorkorder;
    }
    public void setSchWorkorder(SchWorkorder schWorkorder) {
        this.schWorkorder = schWorkorder;
    }
    public String getParamId() {
        return paramId;
    }
    public void setParamId(String paramId) {
        this.paramId = paramId;
    }
    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 Long getPcp() {
        return pcp;
    }
    public void setPcp(Long pcp) {
        this.pcp = pcp;
    }
    public Long getQc() {
        return qc;
    }
    public void setQc(Long qc) {
        this.qc = qc;
    }
    public Double getPval() {
        return pval;
    }
    public void setPval(Double pval) {
        this.pval = pval;
    }
    public Double getZval() {
        return zval;
    }
    public void setZval(Double zval) {
        this.zval = zval;
    }
    public Double getCpk() {
        return cpk;
    }
    public void setCpk(Double cpk) {
        this.cpk = cpk;
    }
    public Double getCp() {
        return cp;
    }
    public void setCp(Double cp) {
        this.cp = cp;
    }
    public Double getPp() {
        return pp;
    }
    public void setPp(Double pp) {
        this.pp = pp;
    }
    public Double getPpk() {
        return ppk;
    }
    public void setPpk(Double ppk) {
        this.ppk = ppk;
    }
    public Double getPpm() {
        return ppm;
    }
    public void setPpm(Double ppm) {
        this.ppm = ppm;
    }
    public Double getStd() {
        return std;
    }
    public void setStd(Double std) {
        this.std = std;
    }
    public Double getUval() {
        return uval;
    }
    public void setUval(Double uval) {
        this.uval = uval;
    }
    public Double getLval() {
        return lval;
    }
    public void setLval(Double lval) {
        this.lval = lval;
    }
    public Double getCuval() {
        return cuval;
    }
    public void setCuval(Double cuval) {
        this.cuval = cuval;
    }
    public Double getClval() {
        return clval;
    }
    public void setClval(Double clval) {
        this.clval = clval;
    }
    public Double getWuval() {
        return wuval;
    }
    public void setWuval(Double wuval) {
        this.wuval = wuval;
    }
    public Double getWlval() {
        return wlval;
    }
    public void setWlval(Double wlval) {
        this.wlval = wlval;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public Long getDtm() {
        return dtm;
    }
    public void setDtm(Long dtm) {
        this.dtm = dtm;
    }
    public Double getDtmuval() {
        return dtmuval;
    }
    public void setDtmuval(Double dtmuval) {
        this.dtmuval = dtmuval;
    }
    public Double getDtmlval() {
        return dtmlval;
    }
    public void setDtmlval(Double dtmlval) {
        this.dtmlval = dtmlval;
    }
    public Long getParamType() {
        return paramType;
    }
    public void setParamType(Long paramType) {
        this.paramType = paramType;
    }
    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;
    }
    
}