first commit
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmAdvanceMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String advanceCode;
|
||||
|
||||
private String advanceCodeId;
|
||||
|
||||
private String description;
|
||||
|
||||
private String calendar;
|
||||
|
||||
private String calendarId;
|
||||
|
||||
public String getAdvanceCode() {
|
||||
return this.advanceCode;
|
||||
}
|
||||
|
||||
public void setAdvanceCode(String newAdvanceCode) {
|
||||
this.advanceCode = newAdvanceCode;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
public void setDescription(String newDescription) {
|
||||
this.description = newDescription;
|
||||
}
|
||||
|
||||
public String getCalendar() {
|
||||
return this.calendar;
|
||||
}
|
||||
|
||||
public void setCalendar(String newCalendar) {
|
||||
this.calendar = newCalendar;
|
||||
}
|
||||
|
||||
public String getCalendarId() {
|
||||
return this.calendarId;
|
||||
}
|
||||
|
||||
public void setCalendarId(String newCalendarId) {
|
||||
this.calendarId = newCalendarId;
|
||||
}
|
||||
|
||||
public String getAdvanceCodeId() {
|
||||
return this.advanceCodeId;
|
||||
}
|
||||
|
||||
public void setAdvanceCodeId(String newAdvanceCodeId) {
|
||||
this.advanceCodeId = newAdvanceCodeId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user