package org.zkoss.bind.examples.order; import java.math.BigDecimal; import java.util.Date; public class CtEntityMaster implements java.io.Serializable { /** serialVersionUID **/ private static final long serialVersionUID = -406599941857275896L; private BigDecimal entityId; private String entityCode; private String entityName; private BigDecimal entityType; private BigDecimal status; private String statusDesc; private BigDecimal createdBy; private Date createdDt; private BigDecimal updatedBy; private boolean editable; private Date updatedDt; private boolean checkedBool; private boolean dirty; public CtEntityMaster() { } public CtEntityMaster(BigDecimal entityId) { this.entityId = entityId; } public CtEntityMaster(BigDecimal entityId, String entityCode, String entityName, BigDecimal entityType, BigDecimal status, String statusDesc, BigDecimal createdBy, Date createdDt, BigDecimal updatedBy, Date updatedDt) { this.entityId = entityId; this.entityCode = entityCode; this.entityName = entityName; this.entityType = entityType; this.status = status; this.statusDesc=statusDesc; this.createdBy = createdBy; this.createdDt = createdDt; this.updatedBy = updatedBy; this.updatedDt = updatedDt; } public BigDecimal getEntityId() { return this.entityId; } public void setEntityId(BigDecimal entityId) { this.entityId = entityId; } public String getEntityCode() { return this.entityCode; } public void setEntityCode(String entityCode) { this.entityCode = entityCode; } public String getEntityName() { return this.entityName; } public void setEntityName(String entityName) { this.entityName = entityName; } public BigDecimal getEntityType() { return this.entityType; } public void setEntityType(BigDecimal entityType) { this.entityType = entityType; } public BigDecimal getStatus() { return status; } public void setStatus(BigDecimal status) { this.status = status; } public BigDecimal getCreatedBy() { return this.createdBy; } public void setCreatedBy(BigDecimal createdBy) { this.createdBy = createdBy; } public Date getCreatedDt() { return this.createdDt; } public void setCreatedDt(Date createdDt) { this.createdDt = createdDt; } public BigDecimal getUpdatedBy() { return this.updatedBy; } public void setUpdatedBy(BigDecimal updatedBy) { this.updatedBy = updatedBy; } public Date getUpdatedDt() { return this.updatedDt; } public void setUpdatedDt(Date updatedDt) { this.updatedDt = updatedDt; } public String getStatusDesc() { return statusDesc; } public void setStatusDesc(String statusDesc) { this.statusDesc = statusDesc; } public boolean isEditable() { return editable; } public void setEditable(boolean editable) { this.editable = editable; } /** * @return the checkedBool */ public boolean isCheckedBool() { return checkedBool; } /** * @param checkedBool the checkedBool to set */ public void setCheckedBool(boolean checkedBool) { this.checkedBool = checkedBool; } /** * @return the dirty */ public boolean isDirty() { return dirty; } /** * @param dirty the dirty to set */ public void setDirty(boolean dirty) { this.dirty = dirty; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "CtEntityMaster [entityId=" + entityId + ", entityCode=" + entityCode + ", entityName=" + entityName + ", status=" + status + ", statusDesc=" + statusDesc + ", editable=" + editable + ", checkedBool=" + checkedBool + "]"; } }