package com.shlanbao.tzsc.base.mapping;
|
|
import java.util.HashSet;
|
import java.util.Set;
|
|
|
/**
|
* QmOutwardDefectItem entity. @author MyEclipse Persistence Tools
|
*/
|
|
public class QmOutwardDefectItem implements java.io.Serializable {
|
|
|
// Fields
|
|
private String id;
|
private String code;//缺陷代码
|
private String name;//缺陷名称
|
private String type;//缺陷类型X - 箱装 T - 条盒 B - 小盒 C - 烟支 F - 滤棒
|
private String pos;//缺陷部位
|
private String des;//缺陷说明
|
private String lvl;//缺陷等级
|
private Long del;//0 未删除 1删除
|
private String parameterCode;//工艺参数代码
|
private Float minusScore;//单位扣分值
|
private String status;//0:禁用1:启用
|
|
// Constructors
|
|
/** default constructor */
|
public QmOutwardDefectItem() {
|
}
|
|
|
/** full constructor */
|
public QmOutwardDefectItem(String code, String name, String parameterCode,String type, String pos, String des, String lvl, Long del, Set qmOutwardDets) {
|
this.code = code;
|
this.name = name;
|
this.type = type;
|
this.pos = pos;
|
this.des = des;
|
this.lvl = lvl;
|
this.del = del;
|
this.parameterCode=parameterCode;
|
}
|
|
|
// Property accessors
|
|
public String getId() {
|
return this.id;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
|
|
|
public String getParameterCode() {
|
return parameterCode;
|
}
|
|
|
public void setParameterCode(String parameterCode) {
|
this.parameterCode = parameterCode;
|
}
|
|
|
public String getName() {
|
return this.name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return this.type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getPos() {
|
return this.pos;
|
}
|
|
public void setPos(String pos) {
|
this.pos = pos;
|
}
|
|
public String getDes() {
|
return this.des;
|
}
|
|
public void setDes(String des) {
|
this.des = des;
|
}
|
|
public String getLvl() {
|
return this.lvl;
|
}
|
|
public void setLvl(String lvl) {
|
this.lvl = lvl;
|
}
|
|
public Long getDel() {
|
return this.del;
|
}
|
|
public void setDel(Long del) {
|
this.del = del;
|
}
|
|
|
|
public Float getMinusScore() {
|
return minusScore;
|
}
|
|
|
public void setMinusScore(Float minusScore) {
|
this.minusScore = minusScore;
|
}
|
|
|
|
|
|
|
|
|
|
}
|