chengf
2025-12-10 ee89a5cfa50980f1f2f2fa84bb69741b161670b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.java110.vo.api.org;
 
import java.io.Serializable;
 
public class ApiOrgCommunityDataVo implements Serializable {
 
    private String orgCommunityId;
    private String orgId;
    private String orgName;
    private String communityId;
    private String communityName;
 
 
    public String getOrgCommunityId() {
        return orgCommunityId;
    }
 
    public void setOrgCommunityId(String orgCommunityId) {
        this.orgCommunityId = orgCommunityId;
    }
 
    public String getOrgId() {
        return orgId;
    }
 
    public void setOrgId(String orgId) {
        this.orgId = orgId;
    }
 
    public String getOrgName() {
        return orgName;
    }
 
    public void setOrgName(String orgName) {
        this.orgName = orgName;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getCommunityName() {
        return communityName;
    }
 
    public void setCommunityName(String communityName) {
        this.communityName = communityName;
    }
}