wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
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
package com.hdl.sdk.link.zigbee.bean;//package com.hdl.sdk.link.zigbee.bean;
//
//import androidx.annotation.NonNull;
//
//import java.util.ArrayList;
//import java.util.List;
//
///**
// * Created by jlchen on 12/29/21.
// * 原生ZigBee设模块
// */
//public class ZBDeviceModuleBean {
//
//    //原生ZigBee设备回路列表
//    private List<ZBDeviceBean> deviceLoopList = new ArrayList<>();
//
//    public ZBDeviceModuleBean(List<ZBDeviceBean> deviceLoopList) {
//        this.deviceLoopList = deviceLoopList;
//    }
//
//    @NonNull
//    public List<ZBDeviceBean> getDeviceLoopList() {
//        if (deviceLoopList == null) {
//            return new ArrayList<>();
//        }
//        return deviceLoopList;
//    }
//
//    public void setDeviceLoopList(@NonNull List<ZBDeviceBean> deviceLoopList) {
//        this.deviceLoopList = deviceLoopList;
//    }
//}