first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View 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;
}
}