| 12345678910111213141516171819202122232425262728293031 |
- package com.usky.ems.service;
- import com.usky.ems.domain.DmpDevice;
- import java.util.List;
- /**
- * 设备信息服务接口
- *
- * @author system
- * @since 2024-01-01
- */
- public interface DmpDeviceService {
- /**
- * 根据网关ID查询网关设备
- *
- * @param tenantId 租户ID
- * @param productCode 产品编码
- * @return 网关设备信息
- */
- List<DmpDevice> getGatewayByDeviceId(Integer tenantId, String productCode);
- /**
- * 根据网关UUID查询所有子设备
- *
- * @param gatewayUuid 网关UUID
- * @return 子设备列表
- */
- List<DmpDevice> getDevicesByGatewayUuid(String gatewayUuid);
- }
|