New file |
| | |
| | | package com.hdl.sdk.link.bean; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import androidx.annotation.NonNull; |
| | | |
| | | /** |
| | | * Created by Zoro |
| | | * Created on 2023/5/18 |
| | | * description: |
| | | */ |
| | | public class GatewayLocationBean implements Serializable { |
| | | private String longitude; |
| | | private String latitude; |
| | | |
| | | public String getLongitude() { |
| | | return longitude == null ? "" : longitude; |
| | | } |
| | | |
| | | public void setLongitude(@NonNull String longitude) { |
| | | this.longitude = longitude; |
| | | } |
| | | |
| | | public String getLatitude() { |
| | | return latitude == null ? "" : latitude; |
| | | } |
| | | |
| | | public void setLatitude(@NonNull String latitude) { |
| | | this.latitude = latitude; |
| | | } |
| | | } |