first commit
This commit is contained in:
26
hrmsWeb/WEB-INF/classes/wenrgise/hrms/vo/HrmPrmOrderQVO.java
Normal file
26
hrmsWeb/WEB-INF/classes/wenrgise/hrms/vo/HrmPrmOrderQVO.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmPrmOrderQVO extends BaseQueryVO implements Serializable {
|
||||
private String empId;
|
||||
|
||||
private String orderNo;
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return this.orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String newOrderNo) {
|
||||
this.orderNo = newOrderNo;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user