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;
/**
* RptGradebookTId generated by hbm2java
*/
@Embeddable
public class RptGradebookTId implements java.io.Serializable {
private BigDecimal sectionColumnId;
private BigDecimal memberId;
public RptGradebookTId() {
}
public RptGradebookTId(BigDecimal sectionColumnId, BigDecimal memberId) {
this.sectionColumnId = sectionColumnId;
this.memberId = memberId;
}
@Column(name="SECTION_COLUMN_ID", nullable=false, precision=20, scale=0)
public BigDecimal getSectionColumnId() {
return this.sectionColumnId;
}
public void setSectionColumnId(BigDecimal sectionColumnId) {
this.sectionColumnId = sectionColumnId;
}
@Column(name="MEMBER_ID", nullable=false, precision=20, scale=0)
public BigDecimal getMemberId() {
return this.memberId;
}
public void setMemberId(BigDecimal memberId) {
this.memberId = memberId;
}
}