first commit
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package WEB-INF.classes.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 WEB-INF.classes.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;
|
||||
}
|
||||
}
|
@@ -0,0 +1,46 @@
|
||||
package WEB-INF.classes.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;
|
||||
}
|
||||
}
|
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.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,76 @@
|
||||
package WEB-INF.classes.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;
|
||||
}
|
||||
}
|
@@ -0,0 +1,3 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
public class WflDtlDocTypeHdrBean {}
|
@@ -0,0 +1,96 @@
|
||||
package WEB-INF.classes.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