package webctdbexport.db;
// Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1
import java.math.BigDecimal;
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
/**
* AssmtDetailT generated by hbm2java
*/
@Entity
@Table(name="ASSMT_DETAIL_T"
)
public class AssmtDetailT implements java.io.Serializable {
private AssmtDetailTId id;
private BigDecimal assmtPoints;
private BigDecimal createTs;
private BigDecimal lastmodifyTs;
public AssmtDetailT() {
}
public AssmtDetailT(AssmtDetailTId id, BigDecimal createTs, BigDecimal lastmodifyTs) {
this.id = id;
this.createTs = createTs;
this.lastmodifyTs = lastmodifyTs;
}
public AssmtDetailT(AssmtDetailTId id, BigDecimal assmtPoints, BigDecimal createTs, BigDecimal lastmodifyTs) {
this.id = id;
this.assmtPoints = assmtPoints;
this.createTs = createTs;
this.lastmodifyTs = lastmodifyTs;
}
@EmbeddedId
@AttributeOverrides( {
@AttributeOverride(name="processId", column=@Column(name="PROCESS_ID", nullable=false, precision=20, scale=0) ),
@AttributeOverride(name="deliveryContextId", column=@Column(name="DELIVERY_CONTEXT_ID", nullable=false, precision=20, scale=0) ),
@AttributeOverride(name="assmtId", column=@Column(name="ASSMT_ID", nullable=false, precision=20, scale=0) ) } )
public AssmtDetailTId getId() {
return this.id;
}
public void setId(AssmtDetailTId id) {
this.id = id;
}
@Column(name="ASSMT_POINTS", precision=10)
public BigDecimal getAssmtPoints() {
return this.assmtPoints;
}
public void setAssmtPoints(BigDecimal assmtPoints) {
this.assmtPoints = assmtPoints;
}
@Column(name="CREATE_TS", nullable=false, precision=20, scale=0)
public BigDecimal getCreateTs() {
return this.createTs;
}
public void setCreateTs(BigDecimal createTs) {
this.createTs = createTs;
}
@Column(name="LASTMODIFY_TS", nullable=false, precision=20, scale=0)
public BigDecimal getLastmodifyTs() {
return this.lastmodifyTs;
}
public void setLastmodifyTs(BigDecimal lastmodifyTs) {
this.lastmodifyTs = lastmodifyTs;
}
}