67 lines
1.4 KiB
Java
67 lines
1.4 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmTrngCrsBudHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String calendarName;
|
|
|
|
private String calendarId;
|
|
|
|
private String description;
|
|
|
|
private String approvedBudget;
|
|
|
|
private String spentTillDate;
|
|
|
|
private String availableBudget;
|
|
|
|
public String getCalendarName() {
|
|
return this.calendarName;
|
|
}
|
|
|
|
public void setCalendarName(String newCalendarName) {
|
|
this.calendarName = newCalendarName;
|
|
}
|
|
|
|
public String getCalendarId() {
|
|
return this.calendarId;
|
|
}
|
|
|
|
public void setCalendarId(String newCalendarId) {
|
|
this.calendarId = newCalendarId;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public void setDescription(String newDescription) {
|
|
this.description = newDescription;
|
|
}
|
|
|
|
public String getApprovedBudget() {
|
|
return this.approvedBudget;
|
|
}
|
|
|
|
public void setApprovedBudget(String newApprovedBudget) {
|
|
this.approvedBudget = newApprovedBudget;
|
|
}
|
|
|
|
public String getSpentTillDate() {
|
|
return this.spentTillDate;
|
|
}
|
|
|
|
public void setSpentTillDate(String newSpentTillDate) {
|
|
this.spentTillDate = newSpentTillDate;
|
|
}
|
|
|
|
public String getAvailableBudget() {
|
|
return this.availableBudget;
|
|
}
|
|
|
|
public void setAvailableBudget(String newAvailableBudget) {
|
|
this.availableBudget = newAvailableBudget;
|
|
}
|
|
}
|