first commit
This commit is contained in:
66
hrmsEjb/wenrgise/workflow/bean/DocHistoryDtlBean.java
Normal file
66
hrmsEjb/wenrgise/workflow/bean/DocHistoryDtlBean.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class DocHistoryDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtSrlNo = "";
|
||||
|
||||
private String txtEmpNum = "";
|
||||
|
||||
private String txtStartTime = "";
|
||||
|
||||
private String txtDuration = "";
|
||||
|
||||
private String txtActivity = "";
|
||||
|
||||
private String txtDocType = "";
|
||||
|
||||
public String getTxtSrlNo() {
|
||||
return this.txtSrlNo;
|
||||
}
|
||||
|
||||
public void setTxtSrlNo(String newTxtSrlNo) {
|
||||
this.txtSrlNo = newTxtSrlNo;
|
||||
}
|
||||
|
||||
public String getTxtEmpNum() {
|
||||
return this.txtEmpNum;
|
||||
}
|
||||
|
||||
public void setTxtEmpNum(String newTxtEmpNum) {
|
||||
this.txtEmpNum = newTxtEmpNum;
|
||||
}
|
||||
|
||||
public String getTxtStartTime() {
|
||||
return this.txtStartTime;
|
||||
}
|
||||
|
||||
public void setTxtStartTime(String newTxtStartTime) {
|
||||
this.txtStartTime = newTxtStartTime;
|
||||
}
|
||||
|
||||
public String getTxtDuration() {
|
||||
return this.txtDuration;
|
||||
}
|
||||
|
||||
public void setTxtDuration(String newTxtDuration) {
|
||||
this.txtDuration = newTxtDuration;
|
||||
}
|
||||
|
||||
public String getTxtActivity() {
|
||||
return this.txtActivity;
|
||||
}
|
||||
|
||||
public void setTxtActivity(String newTxtActivity) {
|
||||
this.txtActivity = newTxtActivity;
|
||||
}
|
||||
|
||||
public String getTxtDocType() {
|
||||
return this.txtDocType;
|
||||
}
|
||||
|
||||
public void setTxtDocType(String newTxtDocType) {
|
||||
this.txtDocType = newTxtDocType;
|
||||
}
|
||||
}
|
146
hrmsEjb/wenrgise/workflow/bean/WFLRouteDtlBean.java
Normal file
146
hrmsEjb/wenrgise/workflow/bean/WFLRouteDtlBean.java
Normal file
@@ -0,0 +1,146 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WFLRouteDtlBean extends BaseDetailBean implements Serializable {
|
||||
String txtEmpId;
|
||||
|
||||
String txtDeptId;
|
||||
|
||||
String txtGrpId;
|
||||
|
||||
String txtClassId;
|
||||
|
||||
String txtEmp;
|
||||
|
||||
String txtClassCode;
|
||||
|
||||
String txtLane;
|
||||
|
||||
String txtLevel;
|
||||
|
||||
String txtDept;
|
||||
|
||||
String txtHlevel;
|
||||
|
||||
String txtGroup;
|
||||
|
||||
String txtFlag;
|
||||
|
||||
String txtNotifFlag = "N";
|
||||
|
||||
private String txtReptHead;
|
||||
|
||||
public String getTxtEmpId() {
|
||||
return this.txtEmpId;
|
||||
}
|
||||
|
||||
public void setTxtEmpId(String newTxtEmpId) {
|
||||
this.txtEmpId = newTxtEmpId;
|
||||
}
|
||||
|
||||
public String getTxtDeptId() {
|
||||
return this.txtDeptId;
|
||||
}
|
||||
|
||||
public void setTxtDeptId(String newTxtDeptId) {
|
||||
this.txtDeptId = newTxtDeptId;
|
||||
}
|
||||
|
||||
public String getTxtGrpId() {
|
||||
return this.txtGrpId;
|
||||
}
|
||||
|
||||
public void setTxtGrpId(String newTxtGrpId) {
|
||||
this.txtGrpId = newTxtGrpId;
|
||||
}
|
||||
|
||||
public String getTxtClassId() {
|
||||
return this.txtClassId;
|
||||
}
|
||||
|
||||
public void setTxtClassId(String newTxtClassId) {
|
||||
this.txtClassId = newTxtClassId;
|
||||
}
|
||||
|
||||
public String getTxtEmp() {
|
||||
return this.txtEmp;
|
||||
}
|
||||
|
||||
public void setTxtEmp(String newTxtEmp) {
|
||||
this.txtEmp = newTxtEmp;
|
||||
}
|
||||
|
||||
public String getTxtClassCode() {
|
||||
return this.txtClassCode;
|
||||
}
|
||||
|
||||
public void setTxtClassCode(String newTxtClassCode) {
|
||||
this.txtClassCode = newTxtClassCode;
|
||||
}
|
||||
|
||||
public String getTxtLane() {
|
||||
return this.txtLane;
|
||||
}
|
||||
|
||||
public void setTxtLane(String newTxtLane) {
|
||||
this.txtLane = newTxtLane;
|
||||
}
|
||||
|
||||
public String getTxtLevel() {
|
||||
return this.txtLevel;
|
||||
}
|
||||
|
||||
public void setTxtLevel(String newTxtLevel) {
|
||||
this.txtLevel = newTxtLevel;
|
||||
}
|
||||
|
||||
public String getTxtDept() {
|
||||
return this.txtDept;
|
||||
}
|
||||
|
||||
public void setTxtDept(String newTxtDept) {
|
||||
this.txtDept = newTxtDept;
|
||||
}
|
||||
|
||||
public String getTxtHlevel() {
|
||||
return this.txtHlevel;
|
||||
}
|
||||
|
||||
public void setTxtHlevel(String newTxtHlevel) {
|
||||
this.txtHlevel = newTxtHlevel;
|
||||
}
|
||||
|
||||
public String getTxtGroup() {
|
||||
return this.txtGroup;
|
||||
}
|
||||
|
||||
public void setTxtGroup(String newTxtGroup) {
|
||||
this.txtGroup = newTxtGroup;
|
||||
}
|
||||
|
||||
public String getTxtFlag() {
|
||||
return this.txtFlag;
|
||||
}
|
||||
|
||||
public void setTxtFlag(String newTxtFlag) {
|
||||
this.txtFlag = newTxtFlag;
|
||||
}
|
||||
|
||||
public String getTxtNotifFlag() {
|
||||
return this.txtNotifFlag;
|
||||
}
|
||||
|
||||
public void setTxtNotifFlag(String newTxtNotifFlag) {
|
||||
this.txtNotifFlag = newTxtNotifFlag;
|
||||
}
|
||||
|
||||
public String getTxtReptHead() {
|
||||
return this.txtReptHead;
|
||||
}
|
||||
|
||||
public void setTxtReptHead(String newTxtReptHead) {
|
||||
this.txtReptHead = newTxtReptHead;
|
||||
}
|
||||
}
|
66
hrmsEjb/wenrgise/workflow/bean/WFLRouteHdrBean.java
Normal file
66
hrmsEjb/wenrgise/workflow/bean/WFLRouteHdrBean.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WFLRouteHdrBean extends BaseHeaderBean implements Serializable {
|
||||
public String actCode;
|
||||
|
||||
public String actCodeDesc;
|
||||
|
||||
public String dtlDocCode;
|
||||
|
||||
public String dtlDocDesc;
|
||||
|
||||
public String activityId;
|
||||
|
||||
public String dtlDocId;
|
||||
|
||||
public String getActCode() {
|
||||
return this.actCode;
|
||||
}
|
||||
|
||||
public void setActCode(String newActCode) {
|
||||
this.actCode = newActCode;
|
||||
}
|
||||
|
||||
public String getActCodeDesc() {
|
||||
return this.actCodeDesc;
|
||||
}
|
||||
|
||||
public void setActCodeDesc(String newActCodeDesc) {
|
||||
this.actCodeDesc = newActCodeDesc;
|
||||
}
|
||||
|
||||
public String getDtlDocCode() {
|
||||
return this.dtlDocCode;
|
||||
}
|
||||
|
||||
public void setDtlDocCode(String newDtlDocCode) {
|
||||
this.dtlDocCode = newDtlDocCode;
|
||||
}
|
||||
|
||||
public String getDtlDocDesc() {
|
||||
return this.dtlDocDesc;
|
||||
}
|
||||
|
||||
public void setDtlDocDesc(String newDtlDocDesc) {
|
||||
this.dtlDocDesc = newDtlDocDesc;
|
||||
}
|
||||
|
||||
public String getActivityId() {
|
||||
return this.activityId;
|
||||
}
|
||||
|
||||
public void setActivityId(String newActivityId) {
|
||||
this.activityId = newActivityId;
|
||||
}
|
||||
|
||||
public String getDtlDocId() {
|
||||
return this.dtlDocId;
|
||||
}
|
||||
|
||||
public void setDtlDocId(String newDtlDocId) {
|
||||
this.dtlDocId = newDtlDocId;
|
||||
}
|
||||
}
|
96
hrmsEjb/wenrgise/workflow/bean/WFLTransDtlBean.java
Normal file
96
hrmsEjb/wenrgise/workflow/bean/WFLTransDtlBean.java
Normal file
@@ -0,0 +1,96 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WFLTransDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtFlane;
|
||||
|
||||
public String txtFLevel;
|
||||
|
||||
public String txtTLane;
|
||||
|
||||
public String txtCDesc;
|
||||
|
||||
public String txtCValue;
|
||||
|
||||
public String txtToRootDtlId;
|
||||
|
||||
public String txtFromRootDtlId;
|
||||
|
||||
String txtTLevel;
|
||||
|
||||
public String txtConditionId;
|
||||
|
||||
public String getTxtFlane() {
|
||||
return this.txtFlane;
|
||||
}
|
||||
|
||||
public void setTxtFlane(String newTxtFlane) {
|
||||
this.txtFlane = newTxtFlane;
|
||||
}
|
||||
|
||||
public String getTxtFLevel() {
|
||||
return this.txtFLevel;
|
||||
}
|
||||
|
||||
public void setTxtFLevel(String newTxtFLevel) {
|
||||
this.txtFLevel = newTxtFLevel;
|
||||
}
|
||||
|
||||
public String getTxtTLane() {
|
||||
return this.txtTLane;
|
||||
}
|
||||
|
||||
public void setTxtTLane(String newTxtTLane) {
|
||||
this.txtTLane = newTxtTLane;
|
||||
}
|
||||
|
||||
public String getTxtCDesc() {
|
||||
return this.txtCDesc;
|
||||
}
|
||||
|
||||
public void setTxtCDesc(String newTxtCDesc) {
|
||||
this.txtCDesc = newTxtCDesc;
|
||||
}
|
||||
|
||||
public String getTxtCValue() {
|
||||
return this.txtCValue;
|
||||
}
|
||||
|
||||
public void setTxtCValue(String newTxtCValue) {
|
||||
this.txtCValue = newTxtCValue;
|
||||
}
|
||||
|
||||
public String getTxtToRootDtlId() {
|
||||
return this.txtToRootDtlId;
|
||||
}
|
||||
|
||||
public void setTxtToRootDtlId(String newTxtToRootDtlId) {
|
||||
this.txtToRootDtlId = newTxtToRootDtlId;
|
||||
}
|
||||
|
||||
public String getTxtFromRootDtlId() {
|
||||
return this.txtFromRootDtlId;
|
||||
}
|
||||
|
||||
public void setTxtFromRootDtlId(String newTxtFromRootDtlId) {
|
||||
this.txtFromRootDtlId = newTxtFromRootDtlId;
|
||||
}
|
||||
|
||||
public String getTxtTLevel() {
|
||||
return this.txtTLevel;
|
||||
}
|
||||
|
||||
public void setTxtTLevel(String newTxtTLevel) {
|
||||
this.txtTLevel = newTxtTLevel;
|
||||
}
|
||||
|
||||
public String getTxtConditionId() {
|
||||
return this.txtConditionId;
|
||||
}
|
||||
|
||||
public void setTxtConditionId(String newTxtConditionId) {
|
||||
this.txtConditionId = newTxtConditionId;
|
||||
}
|
||||
}
|
26
hrmsEjb/wenrgise/workflow/bean/WflActMstDtlBean.java
Normal file
26
hrmsEjb/wenrgise/workflow/bean/WflActMstDtlBean.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflActMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtAttrCode;
|
||||
|
||||
public String txtAttrDesc;
|
||||
|
||||
public String getTxtAttrCode() {
|
||||
return this.txtAttrCode;
|
||||
}
|
||||
|
||||
public void setTxtAttrCode(String newTxtAttrCode) {
|
||||
this.txtAttrCode = newTxtAttrCode;
|
||||
}
|
||||
|
||||
public String getTxtAttrDesc() {
|
||||
return this.txtAttrDesc;
|
||||
}
|
||||
|
||||
public void setTxtAttrDesc(String newTxtAttrDesc) {
|
||||
this.txtAttrDesc = newTxtAttrDesc;
|
||||
}
|
||||
}
|
25
hrmsEjb/wenrgise/workflow/bean/WflAuthorizationBean.java
Normal file
25
hrmsEjb/wenrgise/workflow/bean/WflAuthorizationBean.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WflAuthorizationBean implements Serializable {
|
||||
private boolean authStatus;
|
||||
|
||||
private String errorCode;
|
||||
|
||||
public boolean isAuthStatus() {
|
||||
return this.authStatus;
|
||||
}
|
||||
|
||||
public void setAuthStatus(boolean newAuthStatus) {
|
||||
this.authStatus = newAuthStatus;
|
||||
}
|
||||
|
||||
public String getErrorCode() {
|
||||
return this.errorCode;
|
||||
}
|
||||
|
||||
public void setErrorCode(String newErrorCode) {
|
||||
this.errorCode = newErrorCode;
|
||||
}
|
||||
}
|
56
hrmsEjb/wenrgise/workflow/bean/WflDOPGrpDtlBean.java
Normal file
56
hrmsEjb/wenrgise/workflow/bean/WflDOPGrpDtlBean.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDOPGrpDtlBean extends BaseDetailBean implements Serializable {
|
||||
String txtempNo;
|
||||
|
||||
String txtHiLevel;
|
||||
|
||||
String dfltMembr;
|
||||
|
||||
String empId;
|
||||
|
||||
String txtEmpName;
|
||||
|
||||
public String getTxtempNo() {
|
||||
return this.txtempNo;
|
||||
}
|
||||
|
||||
public void setTxtempNo(String newTxtempNo) {
|
||||
this.txtempNo = newTxtempNo;
|
||||
}
|
||||
|
||||
public String getTxtHiLevel() {
|
||||
return this.txtHiLevel;
|
||||
}
|
||||
|
||||
public void setTxtHiLevel(String newTxtHiLevel) {
|
||||
this.txtHiLevel = newTxtHiLevel;
|
||||
}
|
||||
|
||||
public String getDfltMembr() {
|
||||
return this.dfltMembr;
|
||||
}
|
||||
|
||||
public void setDfltMembr(String newDfltMembr) {
|
||||
this.dfltMembr = newDfltMembr;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getTxtEmpName() {
|
||||
return this.txtEmpName;
|
||||
}
|
||||
|
||||
public void setTxtEmpName(String newTxtEmpName) {
|
||||
this.txtEmpName = newTxtEmpName;
|
||||
}
|
||||
}
|
46
hrmsEjb/wenrgise/workflow/bean/WflDOPGrpHdrBean.java
Normal file
46
hrmsEjb/wenrgise/workflow/bean/WflDOPGrpHdrBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDOPGrpHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String grpCode;
|
||||
|
||||
String grpDesc;
|
||||
|
||||
String remarks;
|
||||
|
||||
String grpFlag;
|
||||
|
||||
public String getGrpCode() {
|
||||
return this.grpCode;
|
||||
}
|
||||
|
||||
public void setGrpCode(String newGrpCode) {
|
||||
this.grpCode = newGrpCode;
|
||||
}
|
||||
|
||||
public String getGrpDesc() {
|
||||
return this.grpDesc;
|
||||
}
|
||||
|
||||
public void setGrpDesc(String newGrpDesc) {
|
||||
this.grpDesc = newGrpDesc;
|
||||
}
|
||||
|
||||
public String getRemarks() {
|
||||
return this.remarks;
|
||||
}
|
||||
|
||||
public void setRemarks(String newRemarks) {
|
||||
this.remarks = newRemarks;
|
||||
}
|
||||
|
||||
public String getGrpFlag() {
|
||||
return this.grpFlag;
|
||||
}
|
||||
|
||||
public void setGrpFlag(String newGrpFlag) {
|
||||
this.grpFlag = newGrpFlag;
|
||||
}
|
||||
}
|
46
hrmsEjb/wenrgise/workflow/bean/WflDelegateMstDtlBean.java
Normal file
46
hrmsEjb/wenrgise/workflow/bean/WflDelegateMstDtlBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDelegateMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtDocType;
|
||||
|
||||
private String txtDesc;
|
||||
|
||||
String txtDocTypeId;
|
||||
|
||||
String disabbutDocType;
|
||||
|
||||
public String getTxtDocType() {
|
||||
return this.txtDocType;
|
||||
}
|
||||
|
||||
public void setTxtDocType(String newTxtDocType) {
|
||||
this.txtDocType = newTxtDocType;
|
||||
}
|
||||
|
||||
public String getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public String getTxtDocTypeId() {
|
||||
return this.txtDocTypeId;
|
||||
}
|
||||
|
||||
public void setTxtDocTypeId(String newTxtDocTypeId) {
|
||||
this.txtDocTypeId = newTxtDocTypeId;
|
||||
}
|
||||
|
||||
public String getDisabbutDocType() {
|
||||
return this.disabbutDocType;
|
||||
}
|
||||
|
||||
public void setDisabbutDocType(String newDisabbutDocType) {
|
||||
this.disabbutDocType = newDisabbutDocType;
|
||||
}
|
||||
}
|
86
hrmsEjb/wenrgise/workflow/bean/WflDelegateMstHdrBean.java
Normal file
86
hrmsEjb/wenrgise/workflow/bean/WflDelegateMstHdrBean.java
Normal file
@@ -0,0 +1,86 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDelegateMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String empName;
|
||||
|
||||
String empNo;
|
||||
|
||||
String fromDate;
|
||||
|
||||
String toDate;
|
||||
|
||||
String delegateAll;
|
||||
|
||||
String empId;
|
||||
|
||||
String remarks;
|
||||
|
||||
String delegateAllDoc = "N";
|
||||
|
||||
public String getEmpName() {
|
||||
return this.empName;
|
||||
}
|
||||
|
||||
public void setEmpName(String newEmpName) {
|
||||
this.empName = newEmpName;
|
||||
}
|
||||
|
||||
public String getEmpNo() {
|
||||
return this.empNo;
|
||||
}
|
||||
|
||||
public void setEmpNo(String newEmpNo) {
|
||||
this.empNo = newEmpNo;
|
||||
}
|
||||
|
||||
public String getFromDate() {
|
||||
return this.fromDate;
|
||||
}
|
||||
|
||||
public void setFromDate(String newFromDate) {
|
||||
this.fromDate = newFromDate;
|
||||
}
|
||||
|
||||
public String getToDate() {
|
||||
return this.toDate;
|
||||
}
|
||||
|
||||
public void setToDate(String newToDate) {
|
||||
this.toDate = newToDate;
|
||||
}
|
||||
|
||||
public String getDelegateAll() {
|
||||
return this.delegateAll;
|
||||
}
|
||||
|
||||
public void setDelegateAll(String newDelegateAll) {
|
||||
this.delegateAll = newDelegateAll;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getRemarks() {
|
||||
return this.remarks;
|
||||
}
|
||||
|
||||
public void setRemarks(String newRemarks) {
|
||||
this.remarks = newRemarks;
|
||||
}
|
||||
|
||||
public String getDelegateAllDoc() {
|
||||
return this.delegateAllDoc;
|
||||
}
|
||||
|
||||
public void setDelegateAllDoc(String newDelegateAllDoc) {
|
||||
this.delegateAllDoc = newDelegateAllDoc;
|
||||
}
|
||||
}
|
56
hrmsEjb/wenrgise/workflow/bean/WflDocMstAttrDtlBean.java
Normal file
56
hrmsEjb/wenrgise/workflow/bean/WflDocMstAttrDtlBean.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocMstAttrDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtAttrName;
|
||||
|
||||
private String txtType;
|
||||
|
||||
private String txtDesc;
|
||||
|
||||
private String docTypeHdrId;
|
||||
|
||||
public String txtLovKey;
|
||||
|
||||
public String getTxtAttrName() {
|
||||
return this.txtAttrName;
|
||||
}
|
||||
|
||||
public void setTxtAttrName(String newTxtAttrName) {
|
||||
this.txtAttrName = newTxtAttrName;
|
||||
}
|
||||
|
||||
public String getTxtType() {
|
||||
return this.txtType;
|
||||
}
|
||||
|
||||
public void setTxtType(String newTxtType) {
|
||||
this.txtType = newTxtType;
|
||||
}
|
||||
|
||||
public String getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public String getDocTypeHdrId() {
|
||||
return this.docTypeHdrId;
|
||||
}
|
||||
|
||||
public void setDocTypeHdrId(String newDocTypeHdrId) {
|
||||
this.docTypeHdrId = newDocTypeHdrId;
|
||||
}
|
||||
|
||||
public String getTxtLovKey() {
|
||||
return this.txtLovKey;
|
||||
}
|
||||
|
||||
public void setTxtLovKey(String newTxtLovKey) {
|
||||
this.txtLovKey = newTxtLovKey;
|
||||
}
|
||||
}
|
@@ -0,0 +1,26 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocMstConditionsDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String docTypeDtlDesc;
|
||||
|
||||
private String conditionExpression;
|
||||
|
||||
public String getDocTypeDtlDesc() {
|
||||
return this.docTypeDtlDesc;
|
||||
}
|
||||
|
||||
public void setDocTypeDtlDesc(String newDocTypeDtlDesc) {
|
||||
this.docTypeDtlDesc = newDocTypeDtlDesc;
|
||||
}
|
||||
|
||||
public String getConditionExpression() {
|
||||
return this.conditionExpression;
|
||||
}
|
||||
|
||||
public void setConditionExpression(String newConditionExpression) {
|
||||
this.conditionExpression = newConditionExpression;
|
||||
}
|
||||
}
|
46
hrmsEjb/wenrgise/workflow/bean/WflDocMstHdrBean.java
Normal file
46
hrmsEjb/wenrgise/workflow/bean/WflDocMstHdrBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDocMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String documentDesc;
|
||||
|
||||
String documentCode;
|
||||
|
||||
private String screenName;
|
||||
|
||||
String maxAppLevel;
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getScreenName() {
|
||||
return this.screenName;
|
||||
}
|
||||
|
||||
public void setScreenName(String newScreenName) {
|
||||
this.screenName = newScreenName;
|
||||
}
|
||||
|
||||
public String getMaxAppLevel() {
|
||||
return this.maxAppLevel;
|
||||
}
|
||||
|
||||
public void setMaxAppLevel(String newMaxAppLevel) {
|
||||
this.maxAppLevel = newMaxAppLevel;
|
||||
}
|
||||
}
|
36
hrmsEjb/wenrgise/workflow/bean/WflDocTypeDtlBean.java
Normal file
36
hrmsEjb/wenrgise/workflow/bean/WflDocTypeDtlBean.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocTypeDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtCode;
|
||||
|
||||
public String txtDesc;
|
||||
|
||||
public String txtActFlag;
|
||||
|
||||
public String getTxtCode() {
|
||||
return this.txtCode;
|
||||
}
|
||||
|
||||
public void setTxtCode(String newTxtCode) {
|
||||
this.txtCode = newTxtCode;
|
||||
}
|
||||
|
||||
public String getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public String getTxtActFlag() {
|
||||
return this.txtActFlag;
|
||||
}
|
||||
|
||||
public void setTxtActFlag(String newTxtActFlag) {
|
||||
this.txtActFlag = newTxtActFlag;
|
||||
}
|
||||
}
|
@@ -0,0 +1,46 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDtlDocActivityMapDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String activityId;
|
||||
|
||||
private String activityCode;
|
||||
|
||||
private String activityDesc;
|
||||
|
||||
private String activityFlag;
|
||||
|
||||
public String getActivityId() {
|
||||
return this.activityId;
|
||||
}
|
||||
|
||||
public void setActivityId(String newActivityId) {
|
||||
this.activityId = newActivityId;
|
||||
}
|
||||
|
||||
public String getActivityCode() {
|
||||
return this.activityCode;
|
||||
}
|
||||
|
||||
public void setActivityCode(String newActivityCode) {
|
||||
this.activityCode = newActivityCode;
|
||||
}
|
||||
|
||||
public String getActivityDesc() {
|
||||
return this.activityDesc;
|
||||
}
|
||||
|
||||
public void setActivityDesc(String newActivityDesc) {
|
||||
this.activityDesc = newActivityDesc;
|
||||
}
|
||||
|
||||
public String getActivityFlag() {
|
||||
return this.activityFlag;
|
||||
}
|
||||
|
||||
public void setActivityFlag(String newActivityFlag) {
|
||||
this.activityFlag = newActivityFlag;
|
||||
}
|
||||
}
|
@@ -0,0 +1,56 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDtlDocActivityMapHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String dtlDocId;
|
||||
|
||||
private String dtlDocCode;
|
||||
|
||||
private String dtlDocDesc;
|
||||
|
||||
private String dtlDocActCode;
|
||||
|
||||
private String dtlDocActDesc;
|
||||
|
||||
public String getDtlDocId() {
|
||||
return this.dtlDocId;
|
||||
}
|
||||
|
||||
public void setDtlDocId(String newDtlDocId) {
|
||||
this.dtlDocId = newDtlDocId;
|
||||
}
|
||||
|
||||
public String getDtlDocCode() {
|
||||
return this.dtlDocCode;
|
||||
}
|
||||
|
||||
public void setDtlDocCode(String newDtlDocCode) {
|
||||
this.dtlDocCode = newDtlDocCode;
|
||||
}
|
||||
|
||||
public String getDtlDocDesc() {
|
||||
return this.dtlDocDesc;
|
||||
}
|
||||
|
||||
public void setDtlDocDesc(String newDtlDocDesc) {
|
||||
this.dtlDocDesc = newDtlDocDesc;
|
||||
}
|
||||
|
||||
public String getDtlDocActCode() {
|
||||
return this.dtlDocActCode;
|
||||
}
|
||||
|
||||
public void setDtlDocActCode(String newDtlDocActCode) {
|
||||
this.dtlDocActCode = newDtlDocActCode;
|
||||
}
|
||||
|
||||
public String getDtlDocActDesc() {
|
||||
return this.dtlDocActDesc;
|
||||
}
|
||||
|
||||
public void setDtlDocActDesc(String newDtlDocActDesc) {
|
||||
this.dtlDocActDesc = newDtlDocActDesc;
|
||||
}
|
||||
}
|
76
hrmsEjb/wenrgise/workflow/bean/WflDtlDocTypeDtlBean.java
Normal file
76
hrmsEjb/wenrgise/workflow/bean/WflDtlDocTypeDtlBean.java
Normal file
@@ -0,0 +1,76 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDtlDocTypeDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtDtlDocCode;
|
||||
|
||||
public String txtDtlDocDesc;
|
||||
|
||||
public String txtConDesc;
|
||||
|
||||
public String txtExp;
|
||||
|
||||
public String txtPriority;
|
||||
|
||||
public String txtConditionId;
|
||||
|
||||
String disabbutCondDesc;
|
||||
|
||||
public String getTxtDtlDocCode() {
|
||||
return this.txtDtlDocCode;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocCode(String newTxtDtlDocCode) {
|
||||
this.txtDtlDocCode = newTxtDtlDocCode;
|
||||
}
|
||||
|
||||
public String getTxtDtlDocDesc() {
|
||||
return this.txtDtlDocDesc;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocDesc(String newTxtDtlDocDesc) {
|
||||
this.txtDtlDocDesc = newTxtDtlDocDesc;
|
||||
}
|
||||
|
||||
public String getTxtConDesc() {
|
||||
return this.txtConDesc;
|
||||
}
|
||||
|
||||
public void setTxtConDesc(String newTxtConDesc) {
|
||||
this.txtConDesc = newTxtConDesc;
|
||||
}
|
||||
|
||||
public String getTxtExp() {
|
||||
return this.txtExp;
|
||||
}
|
||||
|
||||
public void setTxtExp(String newTxtExp) {
|
||||
this.txtExp = newTxtExp;
|
||||
}
|
||||
|
||||
public String getTxtPriority() {
|
||||
return this.txtPriority;
|
||||
}
|
||||
|
||||
public void setTxtPriority(String newTxtPriority) {
|
||||
this.txtPriority = newTxtPriority;
|
||||
}
|
||||
|
||||
public String getTxtConditionId() {
|
||||
return this.txtConditionId;
|
||||
}
|
||||
|
||||
public void setTxtConditionId(String newTxtConditionId) {
|
||||
this.txtConditionId = newTxtConditionId;
|
||||
}
|
||||
|
||||
public String getDisabbutCondDesc() {
|
||||
return this.disabbutCondDesc;
|
||||
}
|
||||
|
||||
public void setDisabbutCondDesc(String newDisabbutCondDesc) {
|
||||
this.disabbutCondDesc = newDisabbutCondDesc;
|
||||
}
|
||||
}
|
3
hrmsEjb/wenrgise/workflow/bean/WflDtlDocTypeHdrBean.java
Normal file
3
hrmsEjb/wenrgise/workflow/bean/WflDtlDocTypeHdrBean.java
Normal file
@@ -0,0 +1,3 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
public class WflDtlDocTypeHdrBean {}
|
76
hrmsEjb/wenrgise/workflow/bean/WflDtlsHdrBean.java
Normal file
76
hrmsEjb/wenrgise/workflow/bean/WflDtlsHdrBean.java
Normal file
@@ -0,0 +1,76 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDtlsHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String toDtls;
|
||||
|
||||
String fromDtls;
|
||||
|
||||
String subjectDtls;
|
||||
|
||||
String descDtls;
|
||||
|
||||
String notifFlag;
|
||||
|
||||
String moduleId;
|
||||
|
||||
String moduleName;
|
||||
|
||||
public String getToDtls() {
|
||||
return this.toDtls;
|
||||
}
|
||||
|
||||
public void setToDtls(String newToDtls) {
|
||||
this.toDtls = newToDtls;
|
||||
}
|
||||
|
||||
public String getFromDtls() {
|
||||
return this.fromDtls;
|
||||
}
|
||||
|
||||
public void setFromDtls(String newFromDtls) {
|
||||
this.fromDtls = newFromDtls;
|
||||
}
|
||||
|
||||
public String getSubjectDtls() {
|
||||
return this.subjectDtls;
|
||||
}
|
||||
|
||||
public void setSubjectDtls(String newSubjectDtls) {
|
||||
this.subjectDtls = newSubjectDtls;
|
||||
}
|
||||
|
||||
public String getDescDtls() {
|
||||
return this.descDtls;
|
||||
}
|
||||
|
||||
public void setDescDtls(String newDescDtls) {
|
||||
this.descDtls = newDescDtls;
|
||||
}
|
||||
|
||||
public String getNotifFlag() {
|
||||
return this.notifFlag;
|
||||
}
|
||||
|
||||
public void setNotifFlag(String newNotifFlag) {
|
||||
this.notifFlag = newNotifFlag;
|
||||
}
|
||||
|
||||
public String getModuleId() {
|
||||
return this.moduleId;
|
||||
}
|
||||
|
||||
public void setModuleId(String newModuleId) {
|
||||
this.moduleId = newModuleId;
|
||||
}
|
||||
|
||||
public String getModuleName() {
|
||||
return this.moduleName;
|
||||
}
|
||||
|
||||
public void setModuleName(String newModuleName) {
|
||||
this.moduleName = newModuleName;
|
||||
}
|
||||
}
|
135
hrmsEjb/wenrgise/workflow/bean/WflWorkListBean.java
Normal file
135
hrmsEjb/wenrgise/workflow/bean/WflWorkListBean.java
Normal file
@@ -0,0 +1,135 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WflWorkListBean implements Serializable {
|
||||
private String txtDocNo;
|
||||
|
||||
private String txtAssignedOn;
|
||||
|
||||
private String txtDocTypeId;
|
||||
|
||||
private String txtSerialNo;
|
||||
|
||||
private String txtDocId;
|
||||
|
||||
private String txtEmpId;
|
||||
|
||||
private String txtActionName;
|
||||
|
||||
private String routeDtlId;
|
||||
|
||||
private String txtModuleId;
|
||||
|
||||
private String txtModuleCode;
|
||||
|
||||
private String txtDocTypeCode;
|
||||
|
||||
private String txtHiddenId;
|
||||
|
||||
private String txtEmpNo;
|
||||
|
||||
public String getTxtDocNo() {
|
||||
return this.txtDocNo;
|
||||
}
|
||||
|
||||
public void setTxtDocNo(String newTxtDocNo) {
|
||||
this.txtDocNo = newTxtDocNo;
|
||||
}
|
||||
|
||||
public String getTxtAssignedOn() {
|
||||
return this.txtAssignedOn;
|
||||
}
|
||||
|
||||
public void setTxtAssignedOn(String newTxtAssignedOn) {
|
||||
this.txtAssignedOn = newTxtAssignedOn;
|
||||
}
|
||||
|
||||
public String getTxtDocTypeId() {
|
||||
return this.txtDocTypeId;
|
||||
}
|
||||
|
||||
public void setTxtDocTypeId(String newTxtDocTypeId) {
|
||||
this.txtDocTypeId = newTxtDocTypeId;
|
||||
}
|
||||
|
||||
public String getTxtSerialNo() {
|
||||
return this.txtSerialNo;
|
||||
}
|
||||
|
||||
public void setTxtSerialNo(String newTxtSerialNo) {
|
||||
this.txtSerialNo = newTxtSerialNo;
|
||||
}
|
||||
|
||||
public String getTxtDocId() {
|
||||
return this.txtDocId;
|
||||
}
|
||||
|
||||
public void setTxtDocId(String newTxtDocId) {
|
||||
this.txtDocId = newTxtDocId;
|
||||
}
|
||||
|
||||
public String getTxtEmpId() {
|
||||
return this.txtEmpId;
|
||||
}
|
||||
|
||||
public void setTxtEmpId(String newTxtEmpId) {
|
||||
this.txtEmpId = newTxtEmpId;
|
||||
}
|
||||
|
||||
public String getTxtActionName() {
|
||||
return this.txtActionName;
|
||||
}
|
||||
|
||||
public void setTxtActionName(String newTxtActionName) {
|
||||
this.txtActionName = newTxtActionName;
|
||||
}
|
||||
|
||||
public String getRouteDtlId() {
|
||||
return this.routeDtlId;
|
||||
}
|
||||
|
||||
public void setRouteDtlId(String newRouteDtlId) {
|
||||
this.routeDtlId = newRouteDtlId;
|
||||
}
|
||||
|
||||
public String getTxtModuleId() {
|
||||
return this.txtModuleId;
|
||||
}
|
||||
|
||||
public void setTxtModuleId(String newTxtModuleId) {
|
||||
this.txtModuleId = newTxtModuleId;
|
||||
}
|
||||
|
||||
public String getTxtModuleCode() {
|
||||
return this.txtModuleCode;
|
||||
}
|
||||
|
||||
public void setTxtModuleCode(String newTxtModuleCode) {
|
||||
this.txtModuleCode = newTxtModuleCode;
|
||||
}
|
||||
|
||||
public String getTxtDocTypeCode() {
|
||||
return this.txtDocTypeCode;
|
||||
}
|
||||
|
||||
public void setTxtDocTypeCode(String newTxtDocTypeCode) {
|
||||
this.txtDocTypeCode = newTxtDocTypeCode;
|
||||
}
|
||||
|
||||
public String getTxtHiddenId() {
|
||||
return this.txtHiddenId;
|
||||
}
|
||||
|
||||
public void setTxtHiddenId(String newTxtHiddenId) {
|
||||
this.txtHiddenId = newTxtHiddenId;
|
||||
}
|
||||
|
||||
public String getTxtEmpNo() {
|
||||
return this.txtEmpNo;
|
||||
}
|
||||
|
||||
public void setTxtEmpNo(String newTxtEmpNo) {
|
||||
this.txtEmpNo = newTxtEmpNo;
|
||||
}
|
||||
}
|
96
hrmsEjb/wenrgise/workflow/bean/WflWorkListInfoBean.java
Normal file
96
hrmsEjb/wenrgise/workflow/bean/WflWorkListInfoBean.java
Normal file
@@ -0,0 +1,96 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.workflow.utility.Node;
|
||||
|
||||
public class WflWorkListInfoBean implements Serializable {
|
||||
String docTypeCode;
|
||||
|
||||
String docId;
|
||||
|
||||
Node oNode;
|
||||
|
||||
String creatorempId;
|
||||
|
||||
String requestorEmpId;
|
||||
|
||||
String siteId;
|
||||
|
||||
String lastEmpId;
|
||||
|
||||
String assignedOn;
|
||||
|
||||
String status;
|
||||
|
||||
public String getDocTypeCode() {
|
||||
return this.docTypeCode;
|
||||
}
|
||||
|
||||
public void setDocTypeCode(String newDocTypeCode) {
|
||||
this.docTypeCode = newDocTypeCode;
|
||||
}
|
||||
|
||||
public String getDocId() {
|
||||
return this.docId;
|
||||
}
|
||||
|
||||
public void setDocId(String newDocId) {
|
||||
this.docId = newDocId;
|
||||
}
|
||||
|
||||
public Node getONode() {
|
||||
return this.oNode;
|
||||
}
|
||||
|
||||
public void setONode(Node newONode) {
|
||||
this.oNode = newONode;
|
||||
}
|
||||
|
||||
public String getCreatorempId() {
|
||||
return this.creatorempId;
|
||||
}
|
||||
|
||||
public void setCreatorempId(String newCreatorempId) {
|
||||
this.creatorempId = newCreatorempId;
|
||||
}
|
||||
|
||||
public String getRequestorEmpId() {
|
||||
return this.requestorEmpId;
|
||||
}
|
||||
|
||||
public void setRequestorEmpId(String newRequestorEmpId) {
|
||||
this.requestorEmpId = newRequestorEmpId;
|
||||
}
|
||||
|
||||
public String getSiteId() {
|
||||
return this.siteId;
|
||||
}
|
||||
|
||||
public void setSiteId(String newSiteId) {
|
||||
this.siteId = newSiteId;
|
||||
}
|
||||
|
||||
public String getLastEmpId() {
|
||||
return this.lastEmpId;
|
||||
}
|
||||
|
||||
public void setLastEmpId(String newLastEmpId) {
|
||||
this.lastEmpId = newLastEmpId;
|
||||
}
|
||||
|
||||
public String getAssignedOn() {
|
||||
return this.assignedOn;
|
||||
}
|
||||
|
||||
public void setAssignedOn(String newAssignedOn) {
|
||||
this.assignedOn = newAssignedOn;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String newStatus) {
|
||||
this.status = newStatus;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user