package webctdbexport.db; // Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1 import java.math.BigDecimal; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; /** * XlistChangeEvents generated by hbm2java */ @Entity @Table(name="XLIST_CHANGE_EVENTS" ) public class XlistChangeEvents implements java.io.Serializable { private BigDecimal id; private BigDecimal instLcid; private BigDecimal masterLcid; private String masterSourceId; private String masterSourceName; private BigDecimal childLcid; private String childSourceId; private String childSourceName; private boolean deletedFlag; private boolean processingStatus; private BigDecimal processingTs; private BigDecimal mark; public XlistChangeEvents() { } public XlistChangeEvents(BigDecimal id, BigDecimal instLcid, BigDecimal masterLcid, String masterSourceId, String masterSourceName, BigDecimal childLcid, String childSourceId, String childSourceName, boolean deletedFlag, boolean processingStatus, BigDecimal processingTs) { this.id = id; this.instLcid = instLcid; this.masterLcid = masterLcid; this.masterSourceId = masterSourceId; this.masterSourceName = masterSourceName; this.childLcid = childLcid; this.childSourceId = childSourceId; this.childSourceName = childSourceName; this.deletedFlag = deletedFlag; this.processingStatus = processingStatus; this.processingTs = processingTs; } public XlistChangeEvents(BigDecimal id, BigDecimal instLcid, BigDecimal masterLcid, String masterSourceId, String masterSourceName, BigDecimal childLcid, String childSourceId, String childSourceName, boolean deletedFlag, boolean processingStatus, BigDecimal processingTs, BigDecimal mark) { this.id = id; this.instLcid = instLcid; this.masterLcid = masterLcid; this.masterSourceId = masterSourceId; this.masterSourceName = masterSourceName; this.childLcid = childLcid; this.childSourceId = childSourceId; this.childSourceName = childSourceName; this.deletedFlag = deletedFlag; this.processingStatus = processingStatus; this.processingTs = processingTs; this.mark = mark; } @Id @Column(name="ID", nullable=false, precision=20, scale=0) public BigDecimal getId() { return this.id; } public void setId(BigDecimal id) { this.id = id; } @Column(name="INST_LCID", nullable=false, precision=20, scale=0) public BigDecimal getInstLcid() { return this.instLcid; } public void setInstLcid(BigDecimal instLcid) { this.instLcid = instLcid; } @Column(name="MASTER_LCID", nullable=false, precision=20, scale=0) public BigDecimal getMasterLcid() { return this.masterLcid; } public void setMasterLcid(BigDecimal masterLcid) { this.masterLcid = masterLcid; } @Column(name="MASTER_SOURCE_ID", nullable=false, length=768) public String getMasterSourceId() { return this.masterSourceId; } public void setMasterSourceId(String masterSourceId) { this.masterSourceId = masterSourceId; } @Column(name="MASTER_SOURCE_NAME", nullable=false, length=510) public String getMasterSourceName() { return this.masterSourceName; } public void setMasterSourceName(String masterSourceName) { this.masterSourceName = masterSourceName; } @Column(name="CHILD_LCID", nullable=false, precision=20, scale=0) public BigDecimal getChildLcid() { return this.childLcid; } public void setChildLcid(BigDecimal childLcid) { this.childLcid = childLcid; } @Column(name="CHILD_SOURCE_ID", nullable=false, length=768) public String getChildSourceId() { return this.childSourceId; } public void setChildSourceId(String childSourceId) { this.childSourceId = childSourceId; } @Column(name="CHILD_SOURCE_NAME", nullable=false, length=510) public String getChildSourceName() { return this.childSourceName; } public void setChildSourceName(String childSourceName) { this.childSourceName = childSourceName; } @Column(name="DELETED_FLAG", nullable=false, precision=1, scale=0) public boolean isDeletedFlag() { return this.deletedFlag; } public void setDeletedFlag(boolean deletedFlag) { this.deletedFlag = deletedFlag; } @Column(name="PROCESSING_STATUS", nullable=false, precision=1, scale=0) public boolean isProcessingStatus() { return this.processingStatus; } public void setProcessingStatus(boolean processingStatus) { this.processingStatus = processingStatus; } @Column(name="PROCESSING_TS", nullable=false, precision=20, scale=0) public BigDecimal getProcessingTs() { return this.processingTs; } public void setProcessingTs(BigDecimal processingTs) { this.processingTs = processingTs; } @Column(name="MARK", precision=20, scale=0) public BigDecimal getMark() { return this.mark; } public void setMark(BigDecimal mark) { this.mark = mark; } }