67 lines
1.3 KiB
Java
67 lines
1.3 KiB
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmLvApplnQueryQVO extends BaseQueryVO implements Serializable {
|
|
private String employeeNo;
|
|
|
|
private String leaveCode;
|
|
|
|
private String fromDate;
|
|
|
|
private String toDate;
|
|
|
|
private String statusOfLeave;
|
|
|
|
private String transId;
|
|
|
|
public String getEmployeeNo() {
|
|
return this.employeeNo;
|
|
}
|
|
|
|
public void setEmployeeNo(String newEmployeeNo) {
|
|
this.employeeNo = newEmployeeNo;
|
|
}
|
|
|
|
public String getLeaveCode() {
|
|
return this.leaveCode;
|
|
}
|
|
|
|
public void setLeaveCode(String newLeaveCode) {
|
|
this.leaveCode = newLeaveCode;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
public String getStatusOfLeave() {
|
|
return this.statusOfLeave;
|
|
}
|
|
|
|
public void setStatusOfLeave(String newStatusOfLeave) {
|
|
this.statusOfLeave = newStatusOfLeave;
|
|
}
|
|
|
|
public String getTransId() {
|
|
return this.transId;
|
|
}
|
|
|
|
public void setTransId(String newTransId) {
|
|
this.transId = newTransId;
|
|
}
|
|
}
|