first commit
This commit is contained in:
166
hrmsWeb/WEB-INF/classes/wenrgise/hrms/bean/HrmLvMstHdrBean.java
Normal file
166
hrmsWeb/WEB-INF/classes/wenrgise/hrms/bean/HrmLvMstHdrBean.java
Normal file
@@ -0,0 +1,166 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmLvMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String leaveCode;
|
||||
|
||||
private String description;
|
||||
|
||||
private String evidenceRequired;
|
||||
|
||||
private String evidenceDescription;
|
||||
|
||||
private String prefixSuffix;
|
||||
|
||||
private String intermediateHoliday;
|
||||
|
||||
private String leaveObsolete;
|
||||
|
||||
private String encashable;
|
||||
|
||||
private String encashableLimit;
|
||||
|
||||
private String periodicity;
|
||||
|
||||
private String calendar;
|
||||
|
||||
private String applicableTo;
|
||||
|
||||
private String calendarTypeId;
|
||||
|
||||
private String leaveCodeId;
|
||||
|
||||
private String suffix;
|
||||
|
||||
private String minLeave;
|
||||
|
||||
public String getApplicableTo() {
|
||||
return this.applicableTo;
|
||||
}
|
||||
|
||||
public void setApplicableTo(String newApplicableTo) {
|
||||
this.applicableTo = newApplicableTo;
|
||||
}
|
||||
|
||||
public String getCalendar() {
|
||||
return this.calendar;
|
||||
}
|
||||
|
||||
public void setCalendar(String newCalendar) {
|
||||
this.calendar = newCalendar;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String newDescription) {
|
||||
this.description = newDescription;
|
||||
}
|
||||
|
||||
public String getEncashable() {
|
||||
return this.encashable;
|
||||
}
|
||||
|
||||
public void setEncashable(String newEncashable) {
|
||||
this.encashable = newEncashable;
|
||||
}
|
||||
|
||||
public String getEncashableLimit() {
|
||||
return this.encashableLimit;
|
||||
}
|
||||
|
||||
public void setEncashableLimit(String newEncashableLimit) {
|
||||
this.encashableLimit = newEncashableLimit;
|
||||
}
|
||||
|
||||
public String getEvidenceDescription() {
|
||||
return this.evidenceDescription;
|
||||
}
|
||||
|
||||
public void setEvidenceDescription(String newEvidenceDescription) {
|
||||
this.evidenceDescription = newEvidenceDescription;
|
||||
}
|
||||
|
||||
public String getEvidenceRequired() {
|
||||
return this.evidenceRequired;
|
||||
}
|
||||
|
||||
public void setEvidenceRequired(String newEvidenceRequired) {
|
||||
this.evidenceRequired = newEvidenceRequired;
|
||||
}
|
||||
|
||||
public String getIntermediateHoliday() {
|
||||
return this.intermediateHoliday;
|
||||
}
|
||||
|
||||
public void setIntermediateHoliday(String newIntermediateHoliday) {
|
||||
this.intermediateHoliday = newIntermediateHoliday;
|
||||
}
|
||||
|
||||
public String getLeaveCode() {
|
||||
return this.leaveCode;
|
||||
}
|
||||
|
||||
public void setLeaveCode(String newLeaveCode) {
|
||||
this.leaveCode = newLeaveCode;
|
||||
}
|
||||
|
||||
public String getLeaveObsolete() {
|
||||
return this.leaveObsolete;
|
||||
}
|
||||
|
||||
public void setLeaveObsolete(String newLeaveObsolete) {
|
||||
this.leaveObsolete = newLeaveObsolete;
|
||||
}
|
||||
|
||||
public String getPeriodicity() {
|
||||
return this.periodicity;
|
||||
}
|
||||
|
||||
public void setPeriodicity(String newPeriodicity) {
|
||||
this.periodicity = newPeriodicity;
|
||||
}
|
||||
|
||||
public String getPrefixSuffix() {
|
||||
return this.prefixSuffix;
|
||||
}
|
||||
|
||||
public void setPrefixSuffix(String newPrefixSuffix) {
|
||||
this.prefixSuffix = newPrefixSuffix;
|
||||
}
|
||||
|
||||
public String getCalendarTypeId() {
|
||||
return this.calendarTypeId;
|
||||
}
|
||||
|
||||
public void setCalendarTypeId(String newCalendarTypeId) {
|
||||
this.calendarTypeId = newCalendarTypeId;
|
||||
}
|
||||
|
||||
public String getLeaveCodeId() {
|
||||
return this.leaveCodeId;
|
||||
}
|
||||
|
||||
public void setLeaveCodeId(String newLeaveCodeId) {
|
||||
this.leaveCodeId = newLeaveCodeId;
|
||||
}
|
||||
|
||||
public String getSuffix() {
|
||||
return this.suffix;
|
||||
}
|
||||
|
||||
public void setSuffix(String newSuffix) {
|
||||
this.suffix = newSuffix;
|
||||
}
|
||||
|
||||
public String getMinLeave() {
|
||||
return this.minLeave;
|
||||
}
|
||||
|
||||
public void setMinLeave(String newMinLeave) {
|
||||
this.minLeave = newMinLeave;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user