package com.shlanbao.tzsc.pms.qm.qmOutWord.beans;
|
|
import java.util.HashSet;
|
import java.util.Set;
|
|
/**
|
* 缺陷定义实体类
|
* <li>@author Administrator
|
* <li>@create 2015-02-26
|
*/
|
|
public class QmOutwardDefectItemBean implements java.io.Serializable {
|
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 Float minusScore;//单位扣分值
|
|
public Float getMinusScore() {
|
return minusScore;
|
}
|
public void setMinusScore(Float minusScore) {
|
this.minusScore = minusScore;
|
}
|
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getCode() {
|
return code;
|
}
|
public void setCode(String code) {
|
this.code = code;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public String getPos() {
|
return pos;
|
}
|
public void setPos(String pos) {
|
this.pos = pos;
|
}
|
public String getDes() {
|
return des;
|
}
|
public void setDes(String des) {
|
this.des = des;
|
}
|
public String getLvl() {
|
return lvl;
|
}
|
public void setLvl(String lvl) {
|
this.lvl = lvl;
|
}
|
public Long getDel() {
|
return del;
|
}
|
public void setDel(Long del) {
|
this.del = del;
|
}
|
|
|
}
|