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;
|
}
|
}
|