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; } }