first commit
This commit is contained in:
86
hrmsEjb/wenrgise/hrms/vo/HrmAttWorkGroupShiftQVO.java
Normal file
86
hrmsEjb/wenrgise/hrms/vo/HrmAttWorkGroupShiftQVO.java
Normal file
@@ -0,0 +1,86 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user