From ce88de4891b87c3b7b2750575e15d6e48d518852 Mon Sep 17 00:00:00 2001 From: hxb <hxb@hdlchina.com.cn> Date: 星期四, 24 十月 2024 10:39:12 +0800 Subject: [PATCH] 增加云端库 --- HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/HomeInfoBean.java | 82 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 82 insertions(+), 0 deletions(-) diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/HomeInfoBean.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/HomeInfoBean.java new file mode 100644 index 0000000..9a575a6 --- /dev/null +++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/home/bean/HomeInfoBean.java @@ -0,0 +1,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; + } +} -- Gitblit v1.8.0