first commit
This commit is contained in:
46
hrmsEjb/wenrgise/hrms/bean/HrmLvApplnQueryDtlBean.java
Normal file
46
hrmsEjb/wenrgise/hrms/bean/HrmLvApplnQueryDtlBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user