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