first commit
This commit is contained in:
66
hrmsEjb/wenrgise/hrms/bean/HrmAttWorkGroupDayOffHdrBean.java
Normal file
66
hrmsEjb/wenrgise/hrms/bean/HrmAttWorkGroupDayOffHdrBean.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class HrmAttWorkGroupDayOffHdrBean extends BaseHeaderBean implements Serializable {
|
||||
private String workGroupId;
|
||||
|
||||
private String siteId;
|
||||
|
||||
private String workGroupCode;
|
||||
|
||||
private String workGroupDescription;
|
||||
|
||||
private String siteCode;
|
||||
|
||||
private String siteDescription;
|
||||
|
||||
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 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user