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;
/**
* GcDeleteListId generated by hbm2java
*/
@Embeddable
public class GcDeleteListId implements java.io.Serializable {
private BigDecimal processId;
private String taskName;
private String groupName;
private BigDecimal deleteId;
private Short lvl;
public GcDeleteListId() {
}
public GcDeleteListId(BigDecimal processId, String taskName, String groupName, BigDecimal deleteId, Short lvl) {
this.processId = processId;
this.taskName = taskName;
this.groupName = groupName;
this.deleteId = deleteId;
this.lvl = lvl;
}
@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="DELETE_ID", nullable=false, precision=20, scale=0)
public BigDecimal getDeleteId() {
return this.deleteId;
}
public void setDeleteId(BigDecimal deleteId) {
this.deleteId = deleteId;
}
@Column(name="LVL", nullable=false, precision=3, scale=0)
public Short getLvl() {
return this.lvl;
}
public void setLvl(Short lvl) {
this.lvl = lvl;
}
}