87 lines
1.7 KiB
Java
87 lines
1.7 KiB
Java
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;
|
|
}
|
|
}
|