first commit
This commit is contained in:
66
hrmsEjb/wenrgise/hrms/bean/HrmLvCancQueryHdrBean.java
Normal file
66
hrmsEjb/wenrgise/hrms/bean/HrmLvCancQueryHdrBean.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmLvCancQueryHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String employeeNumber;
|
||||
|
||||
private String leaveType;
|
||||
|
||||
private String leaveDescription;
|
||||
|
||||
private String cancelFromDate;
|
||||
|
||||
private String cancelToDate;
|
||||
|
||||
private String cancellationStatus;
|
||||
|
||||
public String getEmployeeNumber() {
|
||||
return this.employeeNumber;
|
||||
}
|
||||
|
||||
public void setEmployeeNumber(String newEmployeeNumber) {
|
||||
this.employeeNumber = newEmployeeNumber;
|
||||
}
|
||||
|
||||
public String getLeaveType() {
|
||||
return this.leaveType;
|
||||
}
|
||||
|
||||
public void setLeaveType(String newLeaveType) {
|
||||
this.leaveType = newLeaveType;
|
||||
}
|
||||
|
||||
public String getLeaveDescription() {
|
||||
return this.leaveDescription;
|
||||
}
|
||||
|
||||
public void setLeaveDescription(String newLeaveDescription) {
|
||||
this.leaveDescription = newLeaveDescription;
|
||||
}
|
||||
|
||||
public String getCancelFromDate() {
|
||||
return this.cancelFromDate;
|
||||
}
|
||||
|
||||
public void setCancelFromDate(String newCancelFromDate) {
|
||||
this.cancelFromDate = newCancelFromDate;
|
||||
}
|
||||
|
||||
public String getCancelToDate() {
|
||||
return this.cancelToDate;
|
||||
}
|
||||
|
||||
public void setCancelToDate(String newCancelToDate) {
|
||||
this.cancelToDate = newCancelToDate;
|
||||
}
|
||||
|
||||
public String getCancellationStatus() {
|
||||
return this.cancellationStatus;
|
||||
}
|
||||
|
||||
public void setCancellationStatus(String newCancellationStatus) {
|
||||
this.cancellationStatus = newCancellationStatus;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user