first commit
This commit is contained in:
26
hrmsEjb/wenrgise/hrms/vo/HrmRetireForecastQVO.java
Normal file
26
hrmsEjb/wenrgise/hrms/vo/HrmRetireForecastQVO.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmRetireForecastQVO extends BaseQueryVO implements Serializable {
|
||||
private String fromDate;
|
||||
|
||||
private String toDate;
|
||||
|
||||
public String getFromDate() {
|
||||
return this.fromDate;
|
||||
}
|
||||
|
||||
public void setFromDate(String newFromDate) {
|
||||
this.fromDate = newFromDate;
|
||||
}
|
||||
|
||||
public String getToDate() {
|
||||
return this.toDate;
|
||||
}
|
||||
|
||||
public void setToDate(String newToDate) {
|
||||
this.toDate = newToDate;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user