Files
HRMS/hrmsEjb/wenrgise/hrms/vo/HrmRetireForecastQVO.java
2025-07-28 13:56:49 +05:30

27 lines
527 B
Java

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;
}
}