package com.shlanbao.tzsc.pms.sch.stat.beans;
|
|
|
import com.shlanbao.tzsc.base.model.BaseEntity;
|
|
/**
|
* 工单实绩消耗数据
|
* @author Leejean
|
* @create 2014年11月18日下午4:21:29
|
*/
|
public class InputBean extends BaseEntity {
|
private String id;
|
private String unitCode;//单位code
|
private String unit;
|
private String matCode;//辅料code
|
private String mat;
|
private Double orignalData;//原始数据
|
private Double qty; //消耗量
|
private String bth;//物料批次
|
private String outputId;
|
private String matType;//物料类型
|
|
private Double uval; //消耗量上限值
|
private Double lval; //消耗量下限值
|
|
private Double dacQty; //DAC产量
|
private String inputQty; // 辅料库投料数量
|
|
public String getMatType() {
|
return matType;
|
}
|
|
public void setMatType(String matType) {
|
this.matType = matType;
|
}
|
|
public InputBean() {
|
// TODO Auto-generated constructor stub
|
}
|
|
public InputBean(String id, Double orignalData, Double qty) {
|
super();
|
this.id = id;
|
this.orignalData = orignalData;
|
this.qty = qty;
|
}
|
|
public String getUnitCode() {
|
return unitCode;
|
}
|
|
public void setUnitCode(String unitCode) {
|
this.unitCode = unitCode;
|
}
|
|
public String getMatCode() {
|
return matCode;
|
}
|
|
public void setMatCode(String matCode) {
|
this.matCode = matCode;
|
}
|
|
public String getBth() {
|
return bth;
|
}
|
|
public void setBth(String bth) {
|
this.bth = bth;
|
}
|
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getUnit() {
|
return unit;
|
}
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
public String getMat() {
|
return mat;
|
}
|
public void setMat(String mat) {
|
this.mat = mat;
|
}
|
public Double getOrignalData() {
|
return orignalData;
|
}
|
public void setOrignalData(Double orignalData) {
|
this.orignalData = orignalData;
|
}
|
public Double getQty() {
|
return qty;
|
}
|
public void setQty(Double qty) {
|
this.qty = qty;
|
}
|
public String getOutputId() {
|
return outputId;
|
}
|
public void setOutputId(String outputId) {
|
this.outputId = outputId;
|
}
|
|
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 getDacQty() {
|
return dacQty;
|
}
|
|
public void setDacQty(Double dacQty) {
|
this.dacQty = dacQty;
|
}
|
|
public String getInputQty() {
|
return inputQty;
|
}
|
|
public void setInputQty(String inputQty) {
|
this.inputQty = inputQty;
|
}
|
}
|