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