57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
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;
|
|
}
|
|
}
|