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;
/**
* EnrollmentCountId generated by hbm2java
*/
@Embeddable
public class EnrollmentCountId implements java.io.Serializable {
private BigDecimal id;
private BigDecimal sinsCount;
private BigDecimal sdesCount;
private BigDecimal steaCount;
private BigDecimal learnerCount;
private BigDecimal totalEnrollment;
public EnrollmentCountId() {
}
public EnrollmentCountId(BigDecimal id, BigDecimal sinsCount, BigDecimal sdesCount, BigDecimal steaCount, BigDecimal learnerCount, BigDecimal totalEnrollment) {
this.id = id;
this.sinsCount = sinsCount;
this.sdesCount = sdesCount;
this.steaCount = steaCount;
this.learnerCount = learnerCount;
this.totalEnrollment = totalEnrollment;
}
@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="SINS_COUNT", nullable=false, precision=22, scale=0)
public BigDecimal getSinsCount() {
return this.sinsCount;
}
public void setSinsCount(BigDecimal sinsCount) {
this.sinsCount = sinsCount;
}
@Column(name="SDES_COUNT", nullable=false, precision=22, scale=0)
public BigDecimal getSdesCount() {
return this.sdesCount;
}
public void setSdesCount(BigDecimal sdesCount) {
this.sdesCount = sdesCount;
}
@Column(name="STEA_COUNT", nullable=false, precision=22, scale=0)
public BigDecimal getSteaCount() {
return this.steaCount;
}
public void setSteaCount(BigDecimal steaCount) {
this.steaCount = steaCount;
}
@Column(name="LEARNER_COUNT", nullable=false, precision=22, scale=0)
public BigDecimal getLearnerCount() {
return this.learnerCount;
}
public void setLearnerCount(BigDecimal learnerCount) {
this.learnerCount = learnerCount;
}
@Column(name="TOTAL_ENROLLMENT", nullable=false, precision=22, scale=0)
public BigDecimal getTotalEnrollment() {
return this.totalEnrollment;
}
public void setTotalEnrollment(BigDecimal totalEnrollment) {
this.totalEnrollment = totalEnrollment;
}
}