first commit
This commit is contained in:
46
hrmsEjb/wenrgise/hrms/bean/HrmOrgWorkGroupMstDtlBean.java
Normal file
46
hrmsEjb/wenrgise/hrms/bean/HrmOrgWorkGroupMstDtlBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmOrgWorkGroupMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String reportingEmpId;
|
||||
|
||||
private String empNo;
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setId(String newId) {
|
||||
this.id = newId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public void setName(String newName) {
|
||||
this.name = newName;
|
||||
}
|
||||
|
||||
public String getReportingEmpId() {
|
||||
return this.reportingEmpId;
|
||||
}
|
||||
|
||||
public void setReportingEmpId(String newReportingEmpId) {
|
||||
this.reportingEmpId = newReportingEmpId;
|
||||
}
|
||||
|
||||
public String getEmpNo() {
|
||||
return this.empNo;
|
||||
}
|
||||
|
||||
public void setEmpNo(String newEmpNo) {
|
||||
this.empNo = newEmpNo;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user