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; /** * MediaentryIdsTId generated by hbm2java */ @Embeddable public class MediaentryIdsTId implements java.io.Serializable { private BigDecimal processId; private BigDecimal entryId; public MediaentryIdsTId() { } public MediaentryIdsTId(BigDecimal processId, BigDecimal entryId) { this.processId = processId; this.entryId = entryId; } @Column(name="PROCESS_ID", nullable=false, precision=20, scale=0) public BigDecimal getProcessId() { return this.processId; } public void setProcessId(BigDecimal processId) { this.processId = processId; } @Column(name="ENTRY_ID", nullable=false, precision=20, scale=0) public BigDecimal getEntryId() { return this.entryId; } public void setEntryId(BigDecimal entryId) { this.entryId = entryId; } }