package com.hdl.sdk.link.core.bean.gateway;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Zoro
|
* Created on 2023/10/24
|
* description:
|
*/
|
public class SlaveGatewayJoinAllBean implements Serializable {
|
private String id;
|
private String time_stamp;
|
private List<SlaveGatewayJoinBean> objects = new ArrayList<>();
|
|
public String getId() {
|
return id == null ? "" : id;
|
}
|
|
public void setId(@NonNull String id) {
|
this.id = id;
|
}
|
|
public String getTime_stamp() {
|
return time_stamp == null ? "" : time_stamp;
|
}
|
|
public void setTime_stamp(@NonNull String time_stamp) {
|
this.time_stamp = time_stamp;
|
}
|
|
public List<SlaveGatewayJoinBean> getObjects() {
|
if (objects == null) {
|
return objects = new ArrayList<>();
|
}
|
return objects;
|
}
|
|
public void setObjects(@NonNull List<SlaveGatewayJoinBean> objects) {
|
this.objects = objects;
|
}
|
}
|