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
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;
//    }
//}