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; /** * LcSectionExtVId generated by hbm2java */ @Embeddable public class LcSectionExtVId implements java.io.Serializable { private BigDecimal sectionId; private BigDecimal termId; private String termName; private BigDecimal termStartdateTime; private BigDecimal termEnddateTime; private BigDecimal isAssigned; public LcSectionExtVId() { } public LcSectionExtVId(BigDecimal sectionId, BigDecimal termId, String termName, BigDecimal termStartdateTime, BigDecimal termEnddateTime, BigDecimal isAssigned) { this.sectionId = sectionId; this.termId = termId; this.termName = termName; this.termStartdateTime = termStartdateTime; this.termEnddateTime = termEnddateTime; this.isAssigned = isAssigned; } @Column(name="SECTION_ID", nullable=false, precision=20, scale=0) public BigDecimal getSectionId() { return this.sectionId; } public void setSectionId(BigDecimal sectionId) { this.sectionId = sectionId; } @Column(name="TERM_ID", nullable=false, precision=20, scale=0) public BigDecimal getTermId() { return this.termId; } public void setTermId(BigDecimal termId) { this.termId = termId; } @Column(name="TERM_NAME", nullable=false, length=1000) public String getTermName() { return this.termName; } public void setTermName(String termName) { this.termName = termName; } @Column(name="TERM_STARTDATE_TIME", nullable=false, precision=20, scale=0) public BigDecimal getTermStartdateTime() { return this.termStartdateTime; } public void setTermStartdateTime(BigDecimal termStartdateTime) { this.termStartdateTime = termStartdateTime; } @Column(name="TERM_ENDDATE_TIME", nullable=false, precision=20, scale=0) public BigDecimal getTermEnddateTime() { return this.termEnddateTime; } public void setTermEnddateTime(BigDecimal termEnddateTime) { this.termEnddateTime = termEnddateTime; } @Column(name="IS_ASSIGNED", nullable=false, precision=22, scale=0) public BigDecimal getIsAssigned() { return this.isAssigned; } public void setIsAssigned(BigDecimal isAssigned) { this.isAssigned = isAssigned; } }