package com.shlanbao.tzsc.pms.sch.workorder.beans; import java.util.List; /** * 工单实际反馈 * * */ public class MesWorkOrderBean { private String id; public String getId() { return id; } public void setId(String id) { this.id = id; } private String code; //工单编号 private String shift;//班次 private String team;//班组 private String real_stim; //实际开始时间 private String real_etim; //实际结束时间 private List listFl;//辅料 private String matName;//牌号名称 private Double output;//产量 private String eqpCode;//MES设备code private Integer downtimeTimes;//停机次数 private String downtimeDuration;//停机时间 private Double yzQuantity; // 烟支产量 public Double getYzQuantity() { return yzQuantity; } public void setYzQuantity(Double yzQuantity) { this.yzQuantity = yzQuantity; } public Double getXhQuantity() { return xhQuantity; } public void setXhQuantity(Double xhQuantity) { this.xhQuantity = xhQuantity; } public Double getThQuantity() { return thQuantity; } public void setThQuantity(Double thQuantity) { this.thQuantity = thQuantity; } private Double xhQuantity; // 小盒产量 private Double thQuantity; // 条盒产量 public String getEqpCode() { return eqpCode; } public void setEqpCode(String eqpCode) { this.eqpCode = eqpCode; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getShift() { return shift; } public void setShift(String shift) { this.shift = shift; } public String getTeam() { return team; } public void setTeam(String team) { this.team = team; } public String getReal_stim() { return real_stim; } public void setReal_stim(String real_stim) { this.real_stim = real_stim; } public String getReal_etim() { return real_etim; } public void setReal_etim(String real_etim) { this.real_etim = real_etim; } public List getListFl() { return listFl; } public void setListFl(List listFl) { this.listFl = listFl; } public String getMatName() { return matName; } public void setMatName(String matName) { this.matName = matName; } public Double getOutput() { return output; } public void setOutput(Double output) { this.output = output; } public Integer getDowntimeTimes() { return downtimeTimes; } public void setDowntimeTimes(Integer downtimeTimes) { this.downtimeTimes = downtimeTimes; } public String getDowntimeDuration() { return downtimeDuration; } public void setDowntimeDuration(String downtimeDuration) { this.downtimeDuration = downtimeDuration; } }