chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
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
package com.java110.dto.community;
 
import com.java110.dto.PageDto;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * @ClassName FloorDto
 * @Description 小区数据层封装
 * @Author wuxw
 * @Date 2019/4/24 8:52
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class CommunityDto2 extends PageDto implements Serializable {
 
    public static final String STATE_NORMAL = "1100";
 
    private String communityId;
    private String communityCode;
    private String name;
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getCommunityCode() {
        return communityCode;
    }
 
    public void setCommunityCode(String communityCode) {
        this.communityCode = communityCode;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
}