first commit
This commit is contained in:
35
hrmsEjb/wenrgise/common/bean/EmpInfoBean.java
Normal file
35
hrmsEjb/wenrgise/common/bean/EmpInfoBean.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package wenrgise.common.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EmpInfoBean implements Serializable {
|
||||
String grpId;
|
||||
|
||||
String empId;
|
||||
|
||||
String moduleId;
|
||||
|
||||
public String getGrpId() {
|
||||
return this.grpId;
|
||||
}
|
||||
|
||||
public void setGrpId(String newGrpId) {
|
||||
this.grpId = newGrpId;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getModuleId() {
|
||||
return this.moduleId;
|
||||
}
|
||||
|
||||
public void setModuleId(String newModuleId) {
|
||||
this.moduleId = newModuleId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user