67 lines
1.3 KiB
Java
67 lines
1.3 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmAttShiftRosterGenHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String site;
|
|
|
|
private String fromDate;
|
|
|
|
private String toDate;
|
|
|
|
private String siteId;
|
|
|
|
private String workGroupId;
|
|
|
|
private String workGroupCode;
|
|
|
|
public String getSite() {
|
|
return this.site;
|
|
}
|
|
|
|
public void setSite(String newSite) {
|
|
this.site = newSite;
|
|
}
|
|
|
|
public String getFromDate() {
|
|
return this.fromDate;
|
|
}
|
|
|
|
public void setFromDate(String newFromDate) {
|
|
this.fromDate = newFromDate;
|
|
}
|
|
|
|
public String getToDate() {
|
|
return this.toDate;
|
|
}
|
|
|
|
public void setToDate(String newToDate) {
|
|
this.toDate = newToDate;
|
|
}
|
|
|
|
public String getSiteId() {
|
|
return this.siteId;
|
|
}
|
|
|
|
public void setSiteId(String newSiteId) {
|
|
this.siteId = newSiteId;
|
|
}
|
|
|
|
public String getWorkGroupId() {
|
|
return this.workGroupId;
|
|
}
|
|
|
|
public void setWorkGroupId(String newWorkGroupId) {
|
|
this.workGroupId = newWorkGroupId;
|
|
}
|
|
|
|
public String getWorkGroupCode() {
|
|
return this.workGroupCode;
|
|
}
|
|
|
|
public void setWorkGroupCode(String newWorkGroupCode) {
|
|
this.workGroupCode = newWorkGroupCode;
|
|
}
|
|
}
|