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 wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseDetailBean;
public class HrmLvLedgerTransDtlBean extends BaseDetailBean implements Serializable {
private String txtApplicationDate;
private String txtAction;
private String txtFromDate;
private String txtNoOfDays;
private String txtToDate;
private String txtPayrollMonth;
public String getTxtAction() {
return this.txtAction;
}
public void setTxtAction(String newTxtAction) {
this.txtAction = newTxtAction;
}
public String getTxtApplicationDate() {
return this.txtApplicationDate;
}
public void setTxtApplicationDate(String newTxtApplicationDate) {
this.txtApplicationDate = newTxtApplicationDate;
}
public String getTxtFromDate() {
return this.txtFromDate;
}
public void setTxtFromDate(String newTxtFromDate) {
this.txtFromDate = newTxtFromDate;
}
public String getTxtNoOfDays() {
return this.txtNoOfDays;
}
public void setTxtNoOfDays(String newTxtNoOfDays) {
this.txtNoOfDays = newTxtNoOfDays;
}
public String getTxtPayrollMonth() {
return this.txtPayrollMonth;
}
public void setTxtPayrollMonth(String newTxtPayrollMonth) {
this.txtPayrollMonth = newTxtPayrollMonth;
}
public String getTxtToDate() {
return this.txtToDate;
}
public void setTxtToDate(String newTxtToDate) {
this.txtToDate = newTxtToDate;
}
}