67 lines
1.4 KiB
Java
67 lines
1.4 KiB
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmAttWorkGroupDayOffQVO extends BaseQueryVO implements Serializable {
|
|
private String workGroupCode;
|
|
|
|
private String workGroupDescription;
|
|
|
|
private String siteCode;
|
|
|
|
private String siteDescription;
|
|
|
|
private String workGroupId;
|
|
|
|
private String siteId;
|
|
|
|
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;
|
|
}
|
|
}
|