wjc
2025-01-07 90d5f028ccdaaaf64286f9d632cb335a4d0544b9
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
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;
    }
}