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; /** * ColMetaAuxVId generated by hbm2java */ @Embeddable public class ColMetaAuxVId implements java.io.Serializable { private BigDecimal id; private BigDecimal colMetaId; private String colName; private Short colDatatype; private BigDecimal colMetaGroupId; private BigDecimal attrId; private String attrName; private String value; private BigDecimal valueLcId; private BigDecimal ownerLcId; private BigDecimal visibility; private String typeCode; private BigDecimal currentLcId; public ColMetaAuxVId() { } public ColMetaAuxVId(BigDecimal id, BigDecimal colMetaId, String colName, Short colDatatype, BigDecimal colMetaGroupId, BigDecimal attrId, String attrName, String value, BigDecimal valueLcId, BigDecimal ownerLcId, BigDecimal visibility, String typeCode, BigDecimal currentLcId) { this.id = id; this.colMetaId = colMetaId; this.colName = colName; this.colDatatype = colDatatype; this.colMetaGroupId = colMetaGroupId; this.attrId = attrId; this.attrName = attrName; this.value = value; this.valueLcId = valueLcId; this.ownerLcId = ownerLcId; this.visibility = visibility; this.typeCode = typeCode; this.currentLcId = currentLcId; } @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="COL_META_ID", nullable=false, precision=20, scale=0) public BigDecimal getColMetaId() { return this.colMetaId; } public void setColMetaId(BigDecimal colMetaId) { this.colMetaId = colMetaId; } @Column(name="COL_NAME", nullable=false, length=256) public String getColName() { return this.colName; } public void setColName(String colName) { this.colName = colName; } @Column(name="COL_DATATYPE", nullable=false, precision=4, scale=0) public Short getColDatatype() { return this.colDatatype; } public void setColDatatype(Short colDatatype) { this.colDatatype = colDatatype; } @Column(name="COL_META_GROUP_ID", nullable=false, precision=20, scale=0) public BigDecimal getColMetaGroupId() { return this.colMetaGroupId; } public void setColMetaGroupId(BigDecimal colMetaGroupId) { this.colMetaGroupId = colMetaGroupId; } @Column(name="ATTR_ID", nullable=false, precision=20, scale=0) public BigDecimal getAttrId() { return this.attrId; } public void setAttrId(BigDecimal attrId) { this.attrId = attrId; } @Column(name="ATTR_NAME", nullable=false, length=100) public String getAttrName() { return this.attrName; } public void setAttrName(String attrName) { this.attrName = attrName; } @Column(name="VALUE", nullable=false, length=256) public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } @Column(name="VALUE_LC_ID", nullable=false, precision=20, scale=0) public BigDecimal getValueLcId() { return this.valueLcId; } public void setValueLcId(BigDecimal valueLcId) { this.valueLcId = valueLcId; } @Column(name="OWNER_LC_ID", nullable=false, precision=20, scale=0) public BigDecimal getOwnerLcId() { return this.ownerLcId; } public void setOwnerLcId(BigDecimal ownerLcId) { this.ownerLcId = ownerLcId; } @Column(name="VISIBILITY", nullable=false, precision=22, scale=0) public BigDecimal getVisibility() { return this.visibility; } public void setVisibility(BigDecimal visibility) { this.visibility = visibility; } @Column(name="TYPE_CODE", nullable=false, length=128) public String getTypeCode() { return this.typeCode; } public void setTypeCode(String typeCode) { this.typeCode = typeCode; } @Column(name="CURRENT_LC_ID", nullable=false, precision=20, scale=0) public BigDecimal getCurrentLcId() { return this.currentLcId; } public void setCurrentLcId(BigDecimal currentLcId) { this.currentLcId = currentLcId; } }