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;
/**
* GcDiscoverListId generated by hbm2java
*/
@Embeddable
public class GcDiscoverListId implements java.io.Serializable {
private BigDecimal processId;
private String taskName;
private String groupName;
private String tableName;
private BigDecimal deleteId;
public GcDiscoverListId() {
}
public GcDiscoverListId(BigDecimal processId, String taskName, String groupName, String tableName, BigDecimal deleteId) {
this.processId = processId;
this.taskName = taskName;
this.groupName = groupName;
this.tableName = tableName;
this.deleteId = deleteId;
}
@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="TASK_NAME", nullable=false, length=30)
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
}
@Column(name="GROUP_NAME", nullable=false, length=30)
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
@Column(name="TABLE_NAME", nullable=false, length=30)
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
@Column(name="DELETE_ID", nullable=false, precision=20, scale=0)
public BigDecimal getDeleteId() {
return this.deleteId;
}
public void setDeleteId(BigDecimal deleteId) {
this.deleteId = deleteId;
}
}