package com.shlanbao.tzsc.base.mapping; import java.util.Date; import java.util.HashSet; import java.util.Set; import com.shlanbao.tzsc.base.model.BaseEntity; import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation; /** * SchStatOutput entity. @author MyEclipse Persistence Tools */ public class SchStatOutput extends BaseEntity implements java.io.Serializable { // Fields private String id; private MdUnit mdUnit; private SchWorkorder schWorkorder; private Double qty; private Double badQty; @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss") private Date stim; @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss") private Date etim; private Double runTime; private Double stopTime; private Long stopTimes; private MdUnit timeUnit; @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss") private Date lastRecvTime; @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss") private Date lastUpdateTime; private Long isFeedback; @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss") private Date feedbackTime; private String feedbackUser; private Long del; private Set schStatInputs = new HashSet(0); private Set schStatFaults = new HashSet(0); private Double DACqty;//数采站采集的真实数据 private Double pbjQty;//排包机产量 private Double mainQty;//主机产量(小包机) private Double mainBadQty;//主机剔除量 private Double tbjQty;//透包机产量 private Double tbjGdQty;//主机剔除量 private Double tbjBadQty;//透包机产量 private Double recQty1;//接收1 private Double recQty2;//接收2 private Double qty1; //1-手动录入在线追溯数据 private Double qty2; //2-手动录入手动追加数据 private Double qty3; //3-手动录入成品抽样数据 private Double qty4; //4-手动录入高架置换数据 private Double qty5; //5-手动录入1号工程码数据 //人工发料数--成型滤棒报表,手工发料维护参数 private Double cxpz; //成型盘纸 private Double cxdb; //成型大包 private Double cxkl; //创库发料 // Constructors public Double getCxpz() { return cxpz; } public void setCxpz(Double cxpz) { this.cxpz = cxpz; } public Double getCxdb() { return cxdb; } public void setCxdb(Double cxdb) { this.cxdb = cxdb; } public Double getCxkl() { return cxkl; } public void setCxkl(Double cxkl) { this.cxkl = cxkl; } public Double getPbjQty() { return pbjQty; } public void setPbjQty(Double pbjQty) { this.pbjQty = pbjQty; } public Double getMainQty() { return mainQty; } public void setMainQty(Double mainQty) { this.mainQty = mainQty; } public Double getMainBadQty() { return mainBadQty; } public void setMainBadQty(Double mainBadQty) { this.mainBadQty = mainBadQty; } public Double getTbjQty() { return tbjQty; } public void setTbjQty(Double tbjQty) { this.tbjQty = tbjQty; } public Double getTbjGdQty() { return tbjGdQty; } public void setTbjGdQty(Double tbjGdQty) { this.tbjGdQty = tbjGdQty; } public Double getTbjBadQty() { return tbjBadQty; } public void setTbjBadQty(Double tbjBadQty) { this.tbjBadQty = tbjBadQty; } /** default constructor */ public SchStatOutput() { } public SchStatOutput(String id) { super(); this.id = id; } /** full constructor */ public SchStatOutput(MdUnit mdUnit, SchWorkorder schWorkorder, Double qty, Double badQty, Date stim, Date etim, Double runTime, Double stopTime, Long stopTimes, MdUnit timeUnit, Date lastRecvTime, Date lastUpdateTime, Long isFeedback, Date feedbackTime, String feedbackUser, Long del, Set schStatInputs, Set schStatFaults) { this.mdUnit = mdUnit; this.schWorkorder = schWorkorder; this.qty = qty; this.badQty = badQty; this.stim = stim; this.etim = etim; this.runTime = runTime; this.stopTime = stopTime; this.stopTimes = stopTimes; this.timeUnit = timeUnit; this.lastRecvTime = lastRecvTime; this.lastUpdateTime = lastUpdateTime; this.isFeedback = isFeedback; this.feedbackTime = feedbackTime; this.feedbackUser = feedbackUser; this.del = del; this.schStatInputs = schStatInputs; this.schStatFaults = schStatFaults; } // Property accessors public String getId() { return this.id; } public Double getDACqty() { return DACqty; } public void setDACqty(Double dACqty) { DACqty = dACqty; } public void setId(String id) { this.id = id; } public MdUnit getMdUnit() { return this.mdUnit; } public void setMdUnit(MdUnit mdUnit) { this.mdUnit = mdUnit; } public SchWorkorder getSchWorkorder() { return this.schWorkorder; } public void setSchWorkorder(SchWorkorder schWorkorder) { this.schWorkorder = schWorkorder; } public Double getQty() { return this.qty; } public void setQty(Double qty) { this.qty = qty; } public Double getBadQty() { return this.badQty; } public void setBadQty(Double badQty) { this.badQty = badQty; } public Date getStim() { return this.stim; } public void setStim(Date stim) { this.stim = stim; } public Date getEtim() { return this.etim; } public void setEtim(Date etim) { this.etim = etim; } public Double getRunTime() { return this.runTime; } public void setRunTime(Double runTime) { this.runTime = runTime; } public Double getStopTime() { return this.stopTime; } public void setStopTime(Double stopTime) { this.stopTime = stopTime; } public Long getStopTimes() { return this.stopTimes; } public void setStopTimes(Long stopTimes) { this.stopTimes = stopTimes; } public MdUnit getTimeUnit() { return this.timeUnit; } public void setTimeUnit(MdUnit timeUnit) { this.timeUnit = timeUnit; } public Date getLastRecvTime() { return this.lastRecvTime; } public void setLastRecvTime(Date lastRecvTime) { this.lastRecvTime = lastRecvTime; } public Date getLastUpdateTime() { return this.lastUpdateTime; } public void setLastUpdateTime(Date lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } public Long getIsFeedback() { return this.isFeedback; } public void setIsFeedback(Long isFeedback) { this.isFeedback = isFeedback; } public Date getFeedbackTime() { return this.feedbackTime; } public void setFeedbackTime(Date feedbackTime) { this.feedbackTime = feedbackTime; } public String getFeedbackUser() { return this.feedbackUser; } public void setFeedbackUser(String feedbackUser) { this.feedbackUser = feedbackUser; } public Long getDel() { return this.del; } public void setDel(Long del) { this.del = del; } public Set getSchStatInputs() { return this.schStatInputs; } public void setSchStatInputs(Set schStatInputs) { this.schStatInputs = schStatInputs; } public Set getSchStatFaults() { return this.schStatFaults; } public void setSchStatFaults(Set schStatFaults) { this.schStatFaults = schStatFaults; } public Double getQty1() { return qty1; } public void setQty1(Double qty1) { this.qty1 = qty1; } public Double getQty2() { return qty2; } public void setQty2(Double qty2) { this.qty2 = qty2; } public Double getQty3() { return qty3; } public void setQty3(Double qty3) { this.qty3 = qty3; } public Double getQty4() { return qty4; } public void setQty4(Double qty4) { this.qty4 = qty4; } public Double getQty5() { return qty5; } public void setQty5(Double qty5) { this.qty5 = qty5; } public Double getRecQty1() { return recQty1; } public void setRecQty1(Double recQty1) { this.recQty1 = recQty1; } public Double getRecQty2() { return recQty2; } public void setRecQty2(Double recQty2) { this.recQty2 = recQty2; } }