package org.zkoss.bind.examples.order; import java.math.BigDecimal; import java.util.Date; public class QtAlloyElement implements java.io.Serializable { /** serialVersionUID **/ private static final long serialVersionUID = -5665167569919431486L; private BigDecimal status = BigDecimal.ZERO; private boolean eleStatus = false; private Float efficiency; private Float recovery; private BigDecimal createdBy; private Date createdDt; private BigDecimal updatedBy; private Date updatedDt; private String chemicalElementName; private String alloydefName; public QtAlloyElement() { } /** * @param id * @param status * @param efficiency * @param recovery * @param createdBy * @param createdDt * @param updatedBy * @param updatedDt */ public QtAlloyElement( BigDecimal status, Float efficiency, Float recovery, BigDecimal createdBy, Date createdDt, BigDecimal updatedBy, Date updatedDt) { super(); //this.id = id; this.status = status; this.efficiency = efficiency; this.recovery = recovery; this.createdBy = createdBy; this.createdDt = createdDt; this.updatedBy = updatedBy; this.updatedDt = updatedDt; } /** * @return the status */ public BigDecimal getStatus() { return status; } /** * @param status the status to set */ public void setStatus(BigDecimal status) { this.status = status; } /** * @return the eleStatus */ public boolean isEleStatus() { return eleStatus; } /** * @param eleStatus the eleStatus to set */ public void setEleStatus(boolean eleStatus) { this.eleStatus = eleStatus; } /** * @return the chemicalElementName */ public String getChemicalElementName() { return chemicalElementName; } /** * @param chemicalElementName the chemicalElementName to set */ public void setChemicalElementName(String chemicalElementName) { this.chemicalElementName = chemicalElementName; } /** * @return the alloydefName */ public String getAlloydefName() { return alloydefName; } /** * @param alloydefName the alloydefName to set */ public void setAlloydefName(String alloydefName) { this.alloydefName = alloydefName; } /** * @return the efficiency */ public Float getEfficiency() { return efficiency; } /** * @param efficiency the efficiency to set */ public void setEfficiency(Float efficiency) { this.efficiency = efficiency; } /** * @return the recovery */ public Float getRecovery() { return recovery; } /** * @param recovery the recovery to set */ public void setRecovery(Float recovery) { this.recovery = recovery; } /** * @return the createdBy */ public BigDecimal getCreatedBy() { return createdBy; } /** * @param createdBy the createdBy to set */ public void setCreatedBy(BigDecimal createdBy) { this.createdBy = createdBy; } /** * @return the createdDt */ public Date getCreatedDt() { return createdDt; } /** * @param createdDt the createdDt to set */ public void setCreatedDt(Date createdDt) { this.createdDt = createdDt; } /** * @return the updatedBy */ public BigDecimal getUpdatedBy() { return updatedBy; } /** * @param updatedBy the updatedBy to set */ public void setUpdatedBy(BigDecimal updatedBy) { this.updatedBy = updatedBy; } /** * @return the updatedDt */ public Date getUpdatedDt() { return updatedDt; } /** * @param updatedDt the updatedDt to set */ public void setUpdatedDt(Date updatedDt) { this.updatedDt = updatedDt; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "status=" + status + ", eleStatus=" + eleStatus + ", efficiency=" + efficiency + ", recovery=" + recovery + ", chemicalElementName=" + chemicalElementName + ", alloydefName=" + alloydefName + "]"; } }