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;
/**
* LcChangeEvents generated by hbm2java
*/
@Entity
@Table(name="LC_CHANGE_EVENTS"
)
public class LcChangeEvents implements java.io.Serializable {
private BigDecimal id;
private BigDecimal learningContextId;
private BigDecimal instLcid;
private boolean deletedFlag;
private String sourceId;
private String sourceName;
private boolean processingStatus;
private BigDecimal processingTs;
private BigDecimal mark;
public LcChangeEvents() {
}
public LcChangeEvents(BigDecimal id, BigDecimal learningContextId, BigDecimal instLcid, boolean deletedFlag, String sourceId, String sourceName, boolean processingStatus, BigDecimal processingTs) {
this.id = id;
this.learningContextId = learningContextId;
this.instLcid = instLcid;
this.deletedFlag = deletedFlag;
this.sourceId = sourceId;
this.sourceName = sourceName;
this.processingStatus = processingStatus;
this.processingTs = processingTs;
}
public LcChangeEvents(BigDecimal id, BigDecimal learningContextId, BigDecimal instLcid, boolean deletedFlag, String sourceId, String sourceName, boolean processingStatus, BigDecimal processingTs, BigDecimal mark) {
this.id = id;
this.learningContextId = learningContextId;
this.instLcid = instLcid;
this.deletedFlag = deletedFlag;
this.sourceId = sourceId;
this.sourceName = sourceName;
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="LEARNING_CONTEXT_ID", nullable=false, precision=20, scale=0)
public BigDecimal getLearningContextId() {
return this.learningContextId;
}
public void setLearningContextId(BigDecimal learningContextId) {
this.learningContextId = learningContextId;
}
@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="DELETED_FLAG", nullable=false, precision=1, scale=0)
public boolean isDeletedFlag() {
return this.deletedFlag;
}
public void setDeletedFlag(boolean deletedFlag) {
this.deletedFlag = deletedFlag;
}
@Column(name="SOURCE_ID", nullable=false, length=768)
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
@Column(name="SOURCE_NAME", nullable=false, length=510)
public String getSourceName() {
return this.sourceName;
}
public void setSourceName(String sourceName) {
this.sourceName = sourceName;
}
@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;
}
}