old mode 100644
new mode 100755
| | |
| | | **/ |
| | | public class OrgDto extends PageDto implements Serializable { |
| | | |
| | | public static final String ORG_LEVEL_COMPANY = "2"; |
| | | public static final String ORG_LEVEL_DEPARTMENT = "3"; |
| | | |
| | | private String orgName; |
| | | private String parentOrgId; |
| | | private String description; |
| | | private String orgLevel; |
| | | private String storeId; |
| | | private String orgId; |
| | | private String belongCommunityId; |
| | | private String belongCommunityName; |
| | | private String allowOperation; |
| | | private String staffId; |
| | | private String staffName; |
| | | |
| | | private String parentOrgName; |
| | | |
| | |
| | | public void setParentOrgName(String parentOrgName) { |
| | | this.parentOrgName = parentOrgName; |
| | | } |
| | | |
| | | |
| | | public String getBelongCommunityId() { |
| | | return belongCommunityId; |
| | | } |
| | | |
| | | public void setBelongCommunityId(String belongCommunityId) { |
| | | this.belongCommunityId = belongCommunityId; |
| | | } |
| | | |
| | | public String getBelongCommunityName() { |
| | | return belongCommunityName; |
| | | } |
| | | |
| | | public void setBelongCommunityName(String belongCommunityName) { |
| | | this.belongCommunityName = belongCommunityName; |
| | | } |
| | | |
| | | public String getAllowOperation() { |
| | | return allowOperation; |
| | | } |
| | | |
| | | public void setAllowOperation(String allowOperation) { |
| | | this.allowOperation = allowOperation; |
| | | } |
| | | |
| | | public String getStaffId() { |
| | | return staffId; |
| | | } |
| | | |
| | | public void setStaffId(String staffId) { |
| | | this.staffId = staffId; |
| | | } |
| | | |
| | | public String getStaffName() { |
| | | return staffName; |
| | | } |
| | | |
| | | public void setStaffName(String staffName) { |
| | | this.staffName = staffName; |
| | | } |
| | | } |