first commit
This commit is contained in:
86
hrmsEjb/wenrgise/hrms/bean/HrmAttWorkGroupShiftHdrBean.java
Normal file
86
hrmsEjb/wenrgise/hrms/bean/HrmAttWorkGroupShiftHdrBean.java
Normal file
@@ -0,0 +1,86 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmAttWorkGroupShiftHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String workGroupCode;
|
||||
|
||||
String workGroupDescription;
|
||||
|
||||
String siteCode;
|
||||
|
||||
String siteDescription;
|
||||
|
||||
String workGroupId;
|
||||
|
||||
String siteId;
|
||||
|
||||
String startDate;
|
||||
|
||||
String endDate;
|
||||
|
||||
public String getWorkGroupCode() {
|
||||
return this.workGroupCode;
|
||||
}
|
||||
|
||||
public void setWorkGroupCode(String newWorkGroupCode) {
|
||||
this.workGroupCode = newWorkGroupCode;
|
||||
}
|
||||
|
||||
public String getWorkGroupDescription() {
|
||||
return this.workGroupDescription;
|
||||
}
|
||||
|
||||
public void setWorkGroupDescription(String newWorkGroupDescription) {
|
||||
this.workGroupDescription = newWorkGroupDescription;
|
||||
}
|
||||
|
||||
public String getSiteCode() {
|
||||
return this.siteCode;
|
||||
}
|
||||
|
||||
public void setSiteCode(String newSiteCode) {
|
||||
this.siteCode = newSiteCode;
|
||||
}
|
||||
|
||||
public String getSiteDescription() {
|
||||
return this.siteDescription;
|
||||
}
|
||||
|
||||
public void setSiteDescription(String newSiteDescription) {
|
||||
this.siteDescription = newSiteDescription;
|
||||
}
|
||||
|
||||
public String getWorkGroupId() {
|
||||
return this.workGroupId;
|
||||
}
|
||||
|
||||
public void setWorkGroupId(String newWorkGroupId) {
|
||||
this.workGroupId = newWorkGroupId;
|
||||
}
|
||||
|
||||
public String getSiteId() {
|
||||
return this.siteId;
|
||||
}
|
||||
|
||||
public void setSiteId(String newSiteId) {
|
||||
this.siteId = newSiteId;
|
||||
}
|
||||
|
||||
public String getStartDate() {
|
||||
return this.startDate;
|
||||
}
|
||||
|
||||
public void setStartDate(String newStartDate) {
|
||||
this.startDate = newStartDate;
|
||||
}
|
||||
|
||||
public String getEndDate() {
|
||||
return this.endDate;
|
||||
}
|
||||
|
||||
public void setEndDate(String newEndDate) {
|
||||
this.endDate = newEndDate;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user