first commit
This commit is contained in:
26
hrmsEjb/wenrgise/hrms/vo/HrmEmpPersQVO.java
Normal file
26
hrmsEjb/wenrgise/hrms/vo/HrmEmpPersQVO.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmEmpPersQVO extends BaseQueryVO implements Serializable {
|
||||
private String employeeNo;
|
||||
|
||||
private String empId;
|
||||
|
||||
public String getEmployeeNo() {
|
||||
return this.employeeNo;
|
||||
}
|
||||
|
||||
public void setEmployeeNo(String newEmployeeNo) {
|
||||
this.employeeNo = newEmployeeNo;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user