first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
package WEB-INF.classes.wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseDetailBean;
public class HrmLvCancQueryDtlBean extends BaseDetailBean implements Serializable {
private String txtTransId;
private String txtLeaveCodes;
private String txtAppliedLeaveDate;
private String txtCancellationDate;
private String txtCancellationType;
private String txtCancelStatus;
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 getTxtCancellationDate() {
return this.txtCancellationDate;
}
public void setTxtCancellationDate(String newTxtCancellationDate) {
this.txtCancellationDate = newTxtCancellationDate;
}
public String getTxtCancellationType() {
return this.txtCancellationType;
}
public void setTxtCancellationType(String newTxtCancellationType) {
this.txtCancellationType = newTxtCancellationType;
}
public String getTxtCancelStatus() {
return this.txtCancelStatus;
}
public void setTxtCancelStatus(String newTxtCancelStatus) {
this.txtCancelStatus = newTxtCancelStatus;
}
}