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,56 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmLnChartHdrBean extends BaseHeaderBean implements Serializable {
private String chartName;
private String chartId;
private String effectiveFromDate;
private String effectiveToDate;
private String interestRate;
public String getChartName() {
return this.chartName;
}
public void setChartName(String newChartName) {
this.chartName = newChartName;
}
public String getEffectiveFromDate() {
return this.effectiveFromDate;
}
public void setEffectiveFromDate(String newEffectiveFromDate) {
this.effectiveFromDate = newEffectiveFromDate;
}
public String getEffectiveToDate() {
return this.effectiveToDate;
}
public void setEffectiveToDate(String newEffectiveToDate) {
this.effectiveToDate = newEffectiveToDate;
}
public String getInterestRate() {
return this.interestRate;
}
public void setInterestRate(String newInterestRate) {
this.interestRate = newInterestRate;
}
public String getChartId() {
return this.chartId;
}
public void setChartId(String newChartId) {
this.chartId = newChartId;
}
}