package webctdbexport.db; // Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1 import java.math.BigDecimal; import java.sql.Clob; import javax.persistence.Column; import javax.persistence.Embeddable; /** * AssmtExtendedAttemptId generated by hbm2java */ @Embeddable public class AssmtExtendedAttemptId implements java.io.Serializable { private BigDecimal id; private BigDecimal personId; private String webctId; private String nameNFamily; private String nameNGiven; private String nameFn; private BigDecimal score; private BigDecimal initialScore; private BigDecimal beginDate; private BigDecimal currentAttemptDate; private BigDecimal endDate; private BigDecimal submissionId; private Clob comments; private char status; private BigDecimal memberId; private BigDecimal assessmentId; private BigDecimal modifiedFlag; private BigDecimal attemptNum; public AssmtExtendedAttemptId() { } public AssmtExtendedAttemptId(BigDecimal id, BigDecimal personId, String webctId, String nameNFamily, String nameNGiven, String nameFn, BigDecimal score, BigDecimal initialScore, BigDecimal beginDate, BigDecimal currentAttemptDate, BigDecimal endDate, BigDecimal submissionId, Clob comments, char status, BigDecimal memberId, BigDecimal assessmentId, BigDecimal modifiedFlag, BigDecimal attemptNum) { this.id = id; this.personId = personId; this.webctId = webctId; this.nameNFamily = nameNFamily; this.nameNGiven = nameNGiven; this.nameFn = nameFn; this.score = score; this.initialScore = initialScore; this.beginDate = beginDate; this.currentAttemptDate = currentAttemptDate; this.endDate = endDate; this.submissionId = submissionId; this.comments = comments; this.status = status; this.memberId = memberId; this.assessmentId = assessmentId; this.modifiedFlag = modifiedFlag; this.attemptNum = attemptNum; } @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="PERSON_ID", nullable=false, precision=20, scale=0) public BigDecimal getPersonId() { return this.personId; } public void setPersonId(BigDecimal personId) { this.personId = personId; } @Column(name="WEBCT_ID", nullable=false, length=768) public String getWebctId() { return this.webctId; } public void setWebctId(String webctId) { this.webctId = webctId; } @Column(name="NAME_N_FAMILY", nullable=false, length=768) public String getNameNFamily() { return this.nameNFamily; } public void setNameNFamily(String nameNFamily) { this.nameNFamily = nameNFamily; } @Column(name="NAME_N_GIVEN", nullable=false, length=768) public String getNameNGiven() { return this.nameNGiven; } public void setNameNGiven(String nameNGiven) { this.nameNGiven = nameNGiven; } @Column(name="NAME_FN", nullable=false, length=768) public String getNameFn() { return this.nameFn; } public void setNameFn(String nameFn) { this.nameFn = nameFn; } @Column(name="SCORE", nullable=false, precision=9, scale=4) public BigDecimal getScore() { return this.score; } public void setScore(BigDecimal score) { this.score = score; } @Column(name="INITIAL_SCORE", nullable=false, precision=9, scale=4) public BigDecimal getInitialScore() { return this.initialScore; } public void setInitialScore(BigDecimal initialScore) { this.initialScore = initialScore; } @Column(name="BEGIN_DATE", nullable=false, precision=20, scale=0) public BigDecimal getBeginDate() { return this.beginDate; } public void setBeginDate(BigDecimal beginDate) { this.beginDate = beginDate; } @Column(name="CURRENT_ATTEMPT_DATE", nullable=false, precision=20, scale=0) public BigDecimal getCurrentAttemptDate() { return this.currentAttemptDate; } public void setCurrentAttemptDate(BigDecimal currentAttemptDate) { this.currentAttemptDate = currentAttemptDate; } @Column(name="END_DATE", nullable=false, precision=20, scale=0) public BigDecimal getEndDate() { return this.endDate; } public void setEndDate(BigDecimal endDate) { this.endDate = endDate; } @Column(name="SUBMISSION_ID", nullable=false, precision=20, scale=0) public BigDecimal getSubmissionId() { return this.submissionId; } public void setSubmissionId(BigDecimal submissionId) { this.submissionId = submissionId; } @Column(name="COMMENTS", nullable=false) public Clob getComments() { return this.comments; } public void setComments(Clob comments) { this.comments = comments; } @Column(name="STATUS", nullable=false, length=1) public char getStatus() { return this.status; } public void setStatus(char status) { this.status = status; } @Column(name="MEMBER_ID", nullable=false, precision=20, scale=0) public BigDecimal getMemberId() { return this.memberId; } public void setMemberId(BigDecimal memberId) { this.memberId = memberId; } @Column(name="ASSESSMENT_ID", nullable=false, precision=20, scale=0) public BigDecimal getAssessmentId() { return this.assessmentId; } public void setAssessmentId(BigDecimal assessmentId) { this.assessmentId = assessmentId; } @Column(name="MODIFIED_FLAG", nullable=false, precision=22, scale=0) public BigDecimal getModifiedFlag() { return this.modifiedFlag; } public void setModifiedFlag(BigDecimal modifiedFlag) { this.modifiedFlag = modifiedFlag; } @Column(name="ATTEMPT_NUM", nullable=false, precision=22, scale=0) public BigDecimal getAttemptNum() { return this.attemptNum; } public void setAttemptNum(BigDecimal attemptNum) { this.attemptNum = attemptNum; } }