wjc
2023-07-07 22494af577e21a930abef309f2f60c03c9615bd1
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.hdl.linkpm.sdk.project.bean;
 
import androidx.annotation.NonNull;
 
import java.io.Serializable;
 
/**
 * Created by jlchen on 12/9/21.
 * 项目详细信息
 */
public class NewProjectRequestBean implements Serializable {
    private String address;//详细地址
    private String communityName;//项目名称
    private String companyId;//公司ID
    private String debugEndDate;//调试结束日期
    private String debugStartDate;//调试开始日期
    private String debugUserId;//调试员工账号id
    private ProjectLocationBean location;//所在地区
    private String projectType;//0:家居项目 1:地产项目 2:公建项目 3:酒店项目,可用值:Home,RealEstate,PublicBuilding,Hotel
    private String protocolType;//BUSPRO,KNX,ZIGBEE
    private Boolean isMyProjects = true;//是否我的项目
 
    @NonNull
    public String getAddress() {
        return address == null ? "" : address;
    }
 
    public void setAddress(@NonNull String address) {
        this.address = address;
    }
 
    @NonNull
    public String getCommunityName() {
        return communityName == null ? "" : communityName;
    }
 
    public void setCommunityName(@NonNull String communityName) {
        this.communityName = communityName;
    }
 
    @NonNull
    public String getCompanyId() {
        return companyId == null ? "" : companyId;
    }
 
    public void setCompanyId(@NonNull String companyId) {
        this.companyId = companyId;
    }
 
    @NonNull
    public String getDebugEndDate() {
        return debugEndDate == null ? "" : debugEndDate;
    }
 
    public void setDebugEndDate(@NonNull String debugEndDate) {
        this.debugEndDate = debugEndDate;
    }
 
    @NonNull
    public String getDebugStartDate() {
        return debugStartDate == null ? "" : debugStartDate;
    }
 
    public void setDebugStartDate(@NonNull String debugStartDate) {
        this.debugStartDate = debugStartDate;
    }
 
    @NonNull
    public String getDebugUserId() {
        return debugUserId == null ? "" : debugUserId;
    }
 
    public void setDebugUserId(@NonNull String debugUserId) {
        this.debugUserId = debugUserId;
    }
 
    public ProjectLocationBean getLocation() {
        return location;
    }
 
    public void setLocation(ProjectLocationBean location) {
        this.location = location;
    }
 
    @NonNull
    public String getProjectType() {
        return projectType == null ? "" : projectType;
    }
 
    public void setProjectType(@NonNull String projectType) {
        this.projectType = projectType;
    }
 
    @NonNull
    public String getProtocolType() {
        return protocolType == null ? "" : protocolType;
    }
 
    public void setProtocolType(@NonNull String protocolType) {
        this.protocolType = protocolType;
    }
 
    public Boolean getIsMyProjects() {
        return isMyProjects;
    }
 
    public void setIsMyProjects(Boolean myProjects) {
        isMyProjects = myProjects;
    }
}