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.Embeddable; /** * PersonColValueVId generated by hbm2java */ @Embeddable public class PersonColValueVId implements java.io.Serializable { private BigDecimal lcId; private BigDecimal personId; private BigDecimal colId; private String colName; private short datatype; private BigDecimal numberValue; private String shortStringValue; private String longStringValue; private BigDecimal blobValue; private BigDecimal learningContextId; public PersonColValueVId() { } public PersonColValueVId(BigDecimal lcId, BigDecimal personId, BigDecimal colId, String colName, short datatype, BigDecimal numberValue, String shortStringValue, String longStringValue, BigDecimal blobValue, BigDecimal learningContextId) { this.lcId = lcId; this.personId = personId; this.colId = colId; this.colName = colName; this.datatype = datatype; this.numberValue = numberValue; this.shortStringValue = shortStringValue; this.longStringValue = longStringValue; this.blobValue = blobValue; this.learningContextId = learningContextId; } @Column(name="LC_ID", nullable=false, precision=20, scale=0) public BigDecimal getLcId() { return this.lcId; } public void setLcId(BigDecimal lcId) { this.lcId = lcId; } @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="COL_ID", nullable=false, precision=20, scale=0) public BigDecimal getColId() { return this.colId; } public void setColId(BigDecimal colId) { this.colId = colId; } @Column(name="COL_NAME", nullable=false, length=256) public String getColName() { return this.colName; } public void setColName(String colName) { this.colName = colName; } @Column(name="DATATYPE", nullable=false, precision=4, scale=0) public short getDatatype() { return this.datatype; } public void setDatatype(short datatype) { this.datatype = datatype; } @Column(name="NUMBER_VALUE", nullable=false, precision=30, scale=4) public BigDecimal getNumberValue() { return this.numberValue; } public void setNumberValue(BigDecimal numberValue) { this.numberValue = numberValue; } @Column(name="SHORT_STRING_VALUE", nullable=false, length=800) public String getShortStringValue() { return this.shortStringValue; } public void setShortStringValue(String shortStringValue) { this.shortStringValue = shortStringValue; } @Column(name="LONG_STRING_VALUE", nullable=false, length=4000) public String getLongStringValue() { return this.longStringValue; } public void setLongStringValue(String longStringValue) { this.longStringValue = longStringValue; } @Column(name="BLOB_VALUE", nullable=false, precision=20, scale=0) public BigDecimal getBlobValue() { return this.blobValue; } public void setBlobValue(BigDecimal blobValue) { this.blobValue = blobValue; } @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; } }