package cn.iocoder.yudao.module.iot.core.topic.topo; import cn.iocoder.yudao.module.iot.core.enums.IotDeviceMessageMethodEnum; import cn.iocoder.yudao.module.iot.core.topic.IotDeviceIdentity; import lombok.Data; import java.util.List; /** * IoT 设备拓扑关系获取 Response DTO *

* 用于 {@link IotDeviceMessageMethodEnum#TOPO_GET} 响应 * * @author 芋道源码 * @see 阿里云 - 获取拓扑关系 */ @Data public class IotDeviceTopoGetRespDTO { /** * 子设备列表 */ private List subDevices; }