using JiShe.IoT.DeviceAggregation.Dto;
using JiShe.ServicePro.Core;
using JiShe.ServicePro.DeviceManagement.DeviceInfos;
using Volo.Abp;
namespace JiShe.IoT.DeviceAggregation
{
///
/// 设备聚合服务
///
public interface IDeviceAggregationService : IApplicationService
{
///
/// 创建设备信息
///
///
///
Task CreateAsync(CreateDeviceAggregationInput input);
///
/// 删除设备信息
///
///
///
///
Task DeleteAsync(IdInput input);
///
/// 根据设备ID查询设备信息
///
///
///
///
Task FindByIdAsync(IdInput input);
///
/// 重新推送设备信息到物联网平台
///
///
///
///
Task RepushDeviceInfoToIoTPlatform(IdInput input);
}
}