first commit
This commit is contained in:
56
hrmsEjb/wenrgise/hrms/bean/HrmLnChartHdrBean.java
Normal file
56
hrmsEjb/wenrgise/hrms/bean/HrmLnChartHdrBean.java
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user