196 lines
3.8 KiB
Java
196 lines
3.8 KiB
Java
package wenrgise.hrms.webtier.form;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public class HrmMyWorkflowForm extends HrmBaseForm {
|
|
private String workflowType;
|
|
|
|
private String txtStatus;
|
|
|
|
private String id;
|
|
|
|
private String requestType;
|
|
|
|
private String selectAll;
|
|
|
|
private String[] requestId;
|
|
|
|
private String[] requestor;
|
|
|
|
private String[] requestorName;
|
|
|
|
private String[] approver;
|
|
|
|
private String[] approverName;
|
|
|
|
private String[] level;
|
|
|
|
private String[] docDtlId;
|
|
|
|
private String employeeNoId;
|
|
|
|
private String butId;
|
|
|
|
private String disabbutId;
|
|
|
|
private String butAct;
|
|
|
|
private String disabbutAct;
|
|
|
|
private String disabselectAll;
|
|
|
|
private ArrayList arrHrmMyWorkflowDtl = new ArrayList();
|
|
|
|
public String getWorkflowType() {
|
|
return this.workflowType;
|
|
}
|
|
|
|
public void setWorkflowType(String newWorkflowType) {
|
|
this.workflowType = newWorkflowType;
|
|
}
|
|
|
|
public String getTxtStatus() {
|
|
return this.txtStatus;
|
|
}
|
|
|
|
public void setTxtStatus(String newTxtStatus) {
|
|
this.txtStatus = newTxtStatus;
|
|
}
|
|
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(String newId) {
|
|
this.id = newId;
|
|
}
|
|
|
|
public String getRequestType() {
|
|
return this.requestType;
|
|
}
|
|
|
|
public void setRequestType(String newRequestType) {
|
|
this.requestType = newRequestType;
|
|
}
|
|
|
|
public String[] getRequestId() {
|
|
return this.requestId;
|
|
}
|
|
|
|
public void setRequestId(String[] newRequestId) {
|
|
this.requestId = newRequestId;
|
|
}
|
|
|
|
public String[] getRequestor() {
|
|
return this.requestor;
|
|
}
|
|
|
|
public void setRequestor(String[] newRequestor) {
|
|
this.requestor = newRequestor;
|
|
}
|
|
|
|
public String[] getRequestorName() {
|
|
return this.requestorName;
|
|
}
|
|
|
|
public void setRequestorName(String[] newRequestorName) {
|
|
this.requestorName = newRequestorName;
|
|
}
|
|
|
|
public String[] getApprover() {
|
|
return this.approver;
|
|
}
|
|
|
|
public void setApprover(String[] newApprover) {
|
|
this.approver = newApprover;
|
|
}
|
|
|
|
public String[] getApproverName() {
|
|
return this.approverName;
|
|
}
|
|
|
|
public void setApproverName(String[] newApproverName) {
|
|
this.approverName = newApproverName;
|
|
}
|
|
|
|
public String[] getLevel() {
|
|
return this.level;
|
|
}
|
|
|
|
public void setLevel(String[] newLevel) {
|
|
this.level = newLevel;
|
|
}
|
|
|
|
public String getEmployeeNoId() {
|
|
return this.employeeNoId;
|
|
}
|
|
|
|
public void setEmployeeNoId(String newEmployeeNoId) {
|
|
this.employeeNoId = newEmployeeNoId;
|
|
}
|
|
|
|
public String getButAct() {
|
|
return this.butAct;
|
|
}
|
|
|
|
public void setButAct(String butAct) {
|
|
this.butAct = butAct;
|
|
}
|
|
|
|
public String getDisabbutAct() {
|
|
return this.disabbutAct;
|
|
}
|
|
|
|
public void setDisabbutAct(String disabbutAct) {
|
|
this.disabbutAct = disabbutAct;
|
|
}
|
|
|
|
public String[] getDocDtlId() {
|
|
return this.docDtlId;
|
|
}
|
|
|
|
public void setDocDtlId(String[] docDtlId) {
|
|
this.docDtlId = docDtlId;
|
|
}
|
|
|
|
public ArrayList getArrHrmMyWorkflowDtl() {
|
|
return this.arrHrmMyWorkflowDtl;
|
|
}
|
|
|
|
public void setArrHrmMyWorkflowDtl(ArrayList arrHrmMyWorkflowDtl) {
|
|
this.arrHrmMyWorkflowDtl = arrHrmMyWorkflowDtl;
|
|
}
|
|
|
|
public String getSelectAll() {
|
|
return this.selectAll;
|
|
}
|
|
|
|
public void setSelectAll(String selectAll) {
|
|
this.selectAll = selectAll;
|
|
}
|
|
|
|
public String getDisabselectAll() {
|
|
return this.disabselectAll;
|
|
}
|
|
|
|
public void setDisabselectAll(String disabselectAll) {
|
|
this.disabselectAll = disabselectAll;
|
|
}
|
|
|
|
public String getButId() {
|
|
return this.butId;
|
|
}
|
|
|
|
public void setButId(String newButId) {
|
|
this.butId = newButId;
|
|
}
|
|
|
|
public String getDisabbutId() {
|
|
return this.disabbutId;
|
|
}
|
|
|
|
public void setDisabbutId(String disabbutId) {
|
|
this.disabbutId = disabbutId;
|
|
}
|
|
}
|