47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmLvApplnQueryDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtTransId;
|
|
|
|
private String txtLeaveCodes;
|
|
|
|
private String txtAppliedLeaveDate;
|
|
|
|
private String txtLeaveStatus;
|
|
|
|
public String getTxtTransId() {
|
|
return this.txtTransId;
|
|
}
|
|
|
|
public void setTxtTransId(String newTxtTransId) {
|
|
this.txtTransId = newTxtTransId;
|
|
}
|
|
|
|
public String getTxtLeaveCodes() {
|
|
return this.txtLeaveCodes;
|
|
}
|
|
|
|
public void setTxtLeaveCodes(String newTxtLeaveCodes) {
|
|
this.txtLeaveCodes = newTxtLeaveCodes;
|
|
}
|
|
|
|
public String getTxtAppliedLeaveDate() {
|
|
return this.txtAppliedLeaveDate;
|
|
}
|
|
|
|
public void setTxtAppliedLeaveDate(String newTxtAppliedLeaveDate) {
|
|
this.txtAppliedLeaveDate = newTxtAppliedLeaveDate;
|
|
}
|
|
|
|
public String getTxtLeaveStatus() {
|
|
return this.txtLeaveStatus;
|
|
}
|
|
|
|
public void setTxtLeaveStatus(String newTxtLeaveStatus) {
|
|
this.txtLeaveStatus = newTxtLeaveStatus;
|
|
}
|
|
}
|