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;
/**
* AssmtExtAttItemWithRespId generated by hbm2java
*/
@Embeddable
public class AssmtExtAttItemWithRespId implements java.io.Serializable {
private BigDecimal id;
private BigDecimal score;
private BigDecimal initialScore;
private BigDecimal attemptId;
private Clob comments;
private int position;
private BigDecimal questionLinkId;
private BigDecimal randomSeed;
private boolean visitedFlag;
private boolean modifiedFlag;
private BigDecimal maxScore;
private BigDecimal responseId;
private BigDecimal attemptItemId;
private String ident;
private Integer responsePosition;
private String smallValue;
private Clob largeValue;
private String resType;
private BigDecimal numValue;
private Integer exponent;
public AssmtExtAttItemWithRespId() {
}
public AssmtExtAttItemWithRespId(BigDecimal id, BigDecimal score, BigDecimal initialScore, BigDecimal attemptId, Clob comments, int position, BigDecimal questionLinkId, BigDecimal randomSeed, boolean visitedFlag, boolean modifiedFlag, BigDecimal maxScore, BigDecimal responseId, BigDecimal attemptItemId, String ident, Integer responsePosition, String smallValue, Clob largeValue, String resType, BigDecimal numValue, Integer exponent) {
this.id = id;
this.score = score;
this.initialScore = initialScore;
this.attemptId = attemptId;
this.comments = comments;
this.position = position;
this.questionLinkId = questionLinkId;
this.randomSeed = randomSeed;
this.visitedFlag = visitedFlag;
this.modifiedFlag = modifiedFlag;
this.maxScore = maxScore;
this.responseId = responseId;
this.attemptItemId = attemptItemId;
this.ident = ident;
this.responsePosition = responsePosition;
this.smallValue = smallValue;
this.largeValue = largeValue;
this.resType = resType;
this.numValue = numValue;
this.exponent = exponent;
}
@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="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="ATTEMPT_ID", nullable=false, precision=20, scale=0)
public BigDecimal getAttemptId() {
return this.attemptId;
}
public void setAttemptId(BigDecimal attemptId) {
this.attemptId = attemptId;
}
@Column(name="COMMENTS", nullable=false)
public Clob getComments() {
return this.comments;
}
public void setComments(Clob comments) {
this.comments = comments;
}
@Column(name="POSITION", nullable=false, precision=8, scale=0)
public int getPosition() {
return this.position;
}
public void setPosition(int position) {
this.position = position;
}
@Column(name="QUESTION_LINK_ID", nullable=false, precision=20, scale=0)
public BigDecimal getQuestionLinkId() {
return this.questionLinkId;
}
public void setQuestionLinkId(BigDecimal questionLinkId) {
this.questionLinkId = questionLinkId;
}
@Column(name="RANDOM_SEED", nullable=false, precision=20, scale=0)
public BigDecimal getRandomSeed() {
return this.randomSeed;
}
public void setRandomSeed(BigDecimal randomSeed) {
this.randomSeed = randomSeed;
}
@Column(name="VISITED_FLAG", nullable=false, precision=1, scale=0)
public boolean isVisitedFlag() {
return this.visitedFlag;
}
public void setVisitedFlag(boolean visitedFlag) {
this.visitedFlag = visitedFlag;
}
@Column(name="MODIFIED_FLAG", nullable=false, precision=1, scale=0)
public boolean isModifiedFlag() {
return this.modifiedFlag;
}
public void setModifiedFlag(boolean modifiedFlag) {
this.modifiedFlag = modifiedFlag;
}
@Column(name="MAX_SCORE", nullable=false, precision=8, scale=4)
public BigDecimal getMaxScore() {
return this.maxScore;
}
public void setMaxScore(BigDecimal maxScore) {
this.maxScore = maxScore;
}
@Column(name="RESPONSE_ID", nullable=false, precision=20, scale=0)
public BigDecimal getResponseId() {
return this.responseId;
}
public void setResponseId(BigDecimal responseId) {
this.responseId = responseId;
}
@Column(name="ATTEMPT_ITEM_ID", nullable=false, precision=20, scale=0)
public BigDecimal getAttemptItemId() {
return this.attemptItemId;
}
public void setAttemptItemId(BigDecimal attemptItemId) {
this.attemptItemId = attemptItemId;
}
@Column(name="IDENT", nullable=false, length=768)
public String getIdent() {
return this.ident;
}
public void setIdent(String ident) {
this.ident = ident;
}
@Column(name="RESPONSE_POSITION", nullable=false, precision=8, scale=0)
public Integer getResponsePosition() {
return this.responsePosition;
}
public void setResponsePosition(Integer responsePosition) {
this.responsePosition = responsePosition;
}
@Column(name="SMALL_VALUE", nullable=false, length=4000)
public String getSmallValue() {
return this.smallValue;
}
public void setSmallValue(String smallValue) {
this.smallValue = smallValue;
}
@Column(name="LARGE_VALUE", nullable=false)
public Clob getLargeValue() {
return this.largeValue;
}
public void setLargeValue(Clob largeValue) {
this.largeValue = largeValue;
}
@Column(name="RES_TYPE", nullable=false, length=10)
public String getResType() {
return this.resType;
}
public void setResType(String resType) {
this.resType = resType;
}
@Column(name="NUM_VALUE", nullable=false, precision=30, scale=10)
public BigDecimal getNumValue() {
return this.numValue;
}
public void setNumValue(BigDecimal numValue) {
this.numValue = numValue;
}
@Column(name="EXPONENT", nullable=false, precision=5, scale=0)
public Integer getExponent() {
return this.exponent;
}
public void setExponent(Integer exponent) {
this.exponent = exponent;
}
}