87 lines
1.7 KiB
Java
87 lines
1.7 KiB
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmAttWorkGroupShiftQVO extends BaseQueryVO implements Serializable {
|
|
String wrkGrpCode;
|
|
|
|
String siteCode;
|
|
|
|
String startDate;
|
|
|
|
String endDate;
|
|
|
|
String workGroupId;
|
|
|
|
String siteId;
|
|
|
|
String workGroupDescription;
|
|
|
|
String siteDescription;
|
|
|
|
public String getWrkGrpCode() {
|
|
return this.wrkGrpCode;
|
|
}
|
|
|
|
public void setWrkGrpCode(String newWrkGrpCode) {
|
|
this.wrkGrpCode = newWrkGrpCode;
|
|
}
|
|
|
|
public String getSiteCode() {
|
|
return this.siteCode;
|
|
}
|
|
|
|
public void setSiteCode(String newSiteCode) {
|
|
this.siteCode = newSiteCode;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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 getWorkGroupDescription() {
|
|
return this.workGroupDescription;
|
|
}
|
|
|
|
public void setWorkGroupDescription(String newWorkGroupDescription) {
|
|
this.workGroupDescription = newWorkGroupDescription;
|
|
}
|
|
|
|
public String getSiteDescription() {
|
|
return this.siteDescription;
|
|
}
|
|
|
|
public void setSiteDescription(String newSiteDescription) {
|
|
this.siteDescription = newSiteDescription;
|
|
}
|
|
}
|