//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 deviceLoopList = new ArrayList<>(); // // public ZBDeviceModuleBean(List deviceLoopList) { // this.deviceLoopList = deviceLoopList; // } // // @NonNull // public List getDeviceLoopList() { // if (deviceLoopList == null) { // return new ArrayList<>(); // } // return deviceLoopList; // } // // public void setDeviceLoopList(@NonNull List deviceLoopList) { // this.deviceLoopList = deviceLoopList; // } //}