java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
java110-bean/src/main/java/com/java110/dto/org/OrgDto.java
old mode 100644 new mode 100755
@@ -15,6 +15,9 @@
 **/
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;
@@ -22,6 +25,10 @@
    private String storeId;
    private String orgId;
    private String belongCommunityId;
    private String belongCommunityName;
    private String allowOperation;
    private String staffId;
    private String staffName;
    private String parentOrgName;
@@ -122,4 +129,36 @@
    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;
    }
}