317 lines
6.3 KiB
Java
317 lines
6.3 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmOrgWorkGroupMstHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String code;
|
|
|
|
private String owingSite;
|
|
|
|
private String name;
|
|
|
|
private String profitCentre;
|
|
|
|
private String deptFlag;
|
|
|
|
private String temporaryFlag;
|
|
|
|
private String costCentre;
|
|
|
|
private String budgetCode;
|
|
|
|
private String contactEmployeeNo;
|
|
|
|
private String phone;
|
|
|
|
private String eMail;
|
|
|
|
private String fax;
|
|
|
|
private String contactAddress;
|
|
|
|
private String refDocNo;
|
|
|
|
private String creationDate;
|
|
|
|
private String documentDate;
|
|
|
|
private String endDate;
|
|
|
|
private String specialRemarks;
|
|
|
|
private String hierarchyLevel;
|
|
|
|
private String parentGroupCode;
|
|
|
|
private String contactEmployeeId;
|
|
|
|
private String parentGroupCodeId;
|
|
|
|
private String profitCentreId;
|
|
|
|
private String budgetCodeName;
|
|
|
|
private String workGroupCodeId;
|
|
|
|
private String siteId;
|
|
|
|
private String owingSiteCode;
|
|
|
|
private String costId;
|
|
|
|
private String costCode;
|
|
|
|
private String budgetId;
|
|
|
|
private String parentHierarchyLevel;
|
|
|
|
public String getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public void setCode(String newCode) {
|
|
this.code = newCode;
|
|
}
|
|
|
|
public String getOwingSite() {
|
|
return this.owingSite;
|
|
}
|
|
|
|
public void setOwingSite(String newOwingSite) {
|
|
this.owingSite = newOwingSite;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setName(String newName) {
|
|
this.name = newName;
|
|
}
|
|
|
|
public String getProfitCentre() {
|
|
return this.profitCentre;
|
|
}
|
|
|
|
public void setProfitCentre(String newProfitCentre) {
|
|
this.profitCentre = newProfitCentre;
|
|
}
|
|
|
|
public String getDeptFlag() {
|
|
return this.deptFlag;
|
|
}
|
|
|
|
public void setDeptFlag(String newDeptFlag) {
|
|
this.deptFlag = newDeptFlag;
|
|
}
|
|
|
|
public String getTemporaryFlag() {
|
|
return this.temporaryFlag;
|
|
}
|
|
|
|
public void setTemporaryFlag(String newTemporaryFlag) {
|
|
this.temporaryFlag = newTemporaryFlag;
|
|
}
|
|
|
|
public String getCostCentre() {
|
|
return this.costCentre;
|
|
}
|
|
|
|
public void setCostCentre(String newCostCentre) {
|
|
this.costCentre = newCostCentre;
|
|
}
|
|
|
|
public String getBudgetCode() {
|
|
return this.budgetCode;
|
|
}
|
|
|
|
public void setBudgetCode(String newBudgetCode) {
|
|
this.budgetCode = newBudgetCode;
|
|
}
|
|
|
|
public String getContactEmployeeNo() {
|
|
return this.contactEmployeeNo;
|
|
}
|
|
|
|
public void setContactEmployeeNo(String newContactEmployeeNo) {
|
|
this.contactEmployeeNo = newContactEmployeeNo;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return this.phone;
|
|
}
|
|
|
|
public void setPhone(String newPhone) {
|
|
this.phone = newPhone;
|
|
}
|
|
|
|
public String getEMail() {
|
|
return this.eMail;
|
|
}
|
|
|
|
public void setEMail(String newEMail) {
|
|
this.eMail = newEMail;
|
|
}
|
|
|
|
public String getFax() {
|
|
return this.fax;
|
|
}
|
|
|
|
public void setFax(String newFax) {
|
|
this.fax = newFax;
|
|
}
|
|
|
|
public String getContactAddress() {
|
|
return this.contactAddress;
|
|
}
|
|
|
|
public void setContactAddress(String newContactAddress) {
|
|
this.contactAddress = newContactAddress;
|
|
}
|
|
|
|
public String getRefDocNo() {
|
|
return this.refDocNo;
|
|
}
|
|
|
|
public void setRefDocNo(String newRefDocNo) {
|
|
this.refDocNo = newRefDocNo;
|
|
}
|
|
|
|
public String getCreationDate() {
|
|
return this.creationDate;
|
|
}
|
|
|
|
public void setCreationDate(String newCreationDate) {
|
|
this.creationDate = newCreationDate;
|
|
}
|
|
|
|
public String getDocumentDate() {
|
|
return this.documentDate;
|
|
}
|
|
|
|
public void setDocumentDate(String newDocumentDate) {
|
|
this.documentDate = newDocumentDate;
|
|
}
|
|
|
|
public String getEndDate() {
|
|
return this.endDate;
|
|
}
|
|
|
|
public void setEndDate(String newEndDate) {
|
|
this.endDate = newEndDate;
|
|
}
|
|
|
|
public String getSpecialRemarks() {
|
|
return this.specialRemarks;
|
|
}
|
|
|
|
public void setSpecialRemarks(String newSpecialRemarks) {
|
|
this.specialRemarks = newSpecialRemarks;
|
|
}
|
|
|
|
public String getHierarchyLevel() {
|
|
return this.hierarchyLevel;
|
|
}
|
|
|
|
public void setHierarchyLevel(String newHierarchyLevel) {
|
|
this.hierarchyLevel = newHierarchyLevel;
|
|
}
|
|
|
|
public String getParentGroupCode() {
|
|
return this.parentGroupCode;
|
|
}
|
|
|
|
public void setParentGroupCode(String newParentGroupCode) {
|
|
this.parentGroupCode = newParentGroupCode;
|
|
}
|
|
|
|
public String getContactEmployeeId() {
|
|
return this.contactEmployeeId;
|
|
}
|
|
|
|
public void setContactEmployeeId(String newContactEmployeeId) {
|
|
this.contactEmployeeId = newContactEmployeeId;
|
|
}
|
|
|
|
public String getParentGroupCodeId() {
|
|
return this.parentGroupCodeId;
|
|
}
|
|
|
|
public void setParentGroupCodeId(String newParentGroupCodeId) {
|
|
this.parentGroupCodeId = newParentGroupCodeId;
|
|
}
|
|
|
|
public String getProfitCentreId() {
|
|
return this.profitCentreId;
|
|
}
|
|
|
|
public void setProfitCentreId(String newProfitCentreId) {
|
|
this.profitCentreId = newProfitCentreId;
|
|
}
|
|
|
|
public String getBudgetCodeName() {
|
|
return this.budgetCodeName;
|
|
}
|
|
|
|
public void setBudgetCodeName(String newBudgetCodeName) {
|
|
this.budgetCodeName = newBudgetCodeName;
|
|
}
|
|
|
|
public String getWorkGroupCodeId() {
|
|
return this.workGroupCodeId;
|
|
}
|
|
|
|
public void setWorkGroupCodeId(String newWorkGroupCodeId) {
|
|
this.workGroupCodeId = newWorkGroupCodeId;
|
|
}
|
|
|
|
public String getSiteId() {
|
|
return this.siteId;
|
|
}
|
|
|
|
public void setSiteId(String newSiteId) {
|
|
this.siteId = newSiteId;
|
|
}
|
|
|
|
public String getOwingSiteCode() {
|
|
return this.owingSiteCode;
|
|
}
|
|
|
|
public void setOwingSiteCode(String newOwingSiteCode) {
|
|
this.owingSiteCode = newOwingSiteCode;
|
|
}
|
|
|
|
public String getCostId() {
|
|
return this.costId;
|
|
}
|
|
|
|
public void setCostId(String newCostId) {
|
|
this.costId = newCostId;
|
|
}
|
|
|
|
public String getCostCode() {
|
|
return this.costCode;
|
|
}
|
|
|
|
public void setCostCode(String newCostCode) {
|
|
this.costCode = newCostCode;
|
|
}
|
|
|
|
public String getBudgetId() {
|
|
return this.budgetId;
|
|
}
|
|
|
|
public void setBudgetId(String newBudgetId) {
|
|
this.budgetId = newBudgetId;
|
|
}
|
|
|
|
public String getParentHierarchyLevel() {
|
|
return this.parentHierarchyLevel;
|
|
}
|
|
|
|
public void setParentHierarchyLevel(String newParentHierarchyLevel) {
|
|
this.parentHierarchyLevel = newParentHierarchyLevel;
|
|
}
|
|
}
|