package com.gkhy.safePlatform.specialWork.entity;
|
|
import java.io.Serializable;
|
|
public class WorkApprovalStandItemDO implements Serializable {
|
|
private static final long serialVersionUID = 6103987712782197456L;
|
|
private Long id;
|
|
//填报项名称
|
private String itemName;
|
|
//所属作业ID
|
private Long workApplyId;
|
|
//所属审批层级ID
|
private Long stepId;
|
|
//所属审批单元ID
|
private Long unitId;
|
|
//适用标准ID
|
private Long standId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getItemName() {
|
return itemName;
|
}
|
|
public void setItemName(String itemName) {
|
this.itemName = itemName;
|
}
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
|
public Long getStepId() {
|
return stepId;
|
}
|
|
public void setStepId(Long stepId) {
|
this.stepId = stepId;
|
}
|
|
public Long getUnitId() {
|
return unitId;
|
}
|
|
public void setUnitId(Long unitId) {
|
this.unitId = unitId;
|
}
|
|
public Long getStandId() {
|
return standId;
|
}
|
|
public void setStandId(Long standId) {
|
this.standId = standId;
|
}
|
}
|