mac
2023-11-14 54a8c79222bba0644b02fe1dbc5d75e26ea50b5d
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
package com.hdl.linkpm.sdk.home.bean;
 
import androidx.annotation.NonNull;
 
import java.io.Serializable;
 
/**
 * Created by jlchen on 12/10/21.
 */
public class HomeInfoBean implements Serializable {
 
    private String homeId;
    private String homeName;
    private String homeType;
    private String homeAddress;
    private String latitude;
    private String longitude;
 
    public HomeInfoBean() {
 
    }
 
    public HomeInfoBean(String homeId, String homeName, String homeType) {
        this.homeId = homeId;
        this.homeName = homeName;
        this.homeType = homeType;
    }
 
    @NonNull
    public String getHomeId() {
        return homeId == null ? "" : homeId;
    }
 
    public void setHomeId(@NonNull String homeId) {
        this.homeId = homeId;
    }
 
    @NonNull
    public String getHomeName() {
        return homeName == null ? "" : homeName;
    }
 
    public void setHomeName(@NonNull String homeName) {
        this.homeName = homeName;
    }
 
    @NonNull
    public String getHomeType() {
        return homeType == null ? "" : homeType;
    }
 
    public void setHomeType(@NonNull String homeType) {
        this.homeType = homeType;
    }
 
    @NonNull
    public String getHomeAddress() {
        return homeAddress == null ? "" : homeAddress;
    }
 
    public void setHomeAddress(@NonNull String homeAddress) {
        this.homeAddress = homeAddress;
    }
 
    @NonNull
    public String getLatitude() {
        return latitude == null ? "" : latitude;
    }
 
    public void setLatitude(@NonNull String latitude) {
        this.latitude = latitude;
    }
 
    @NonNull
    public String getLongitude() {
        return longitude == null ? "" : longitude;
    }
 
    public void setLongitude(@NonNull String longitude) {
        this.longitude = longitude;
    }
}