2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
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
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
 * <p>
 * 用于 {@link IotDeviceMessageMethodEnum#TOPO_GET} 响应
 *
 * @author 芋道源码
 * @see <a href="https://help.aliyun.com/zh/marketplace/obtain-topological-relationship">阿里云 - 获取拓扑关系</a>
 */
@Data
public class IotDeviceTopoGetRespDTO {
 
    /**
     * 子设备列表
     */
    private List<IotDeviceIdentity> subDevices;
 
}