using JiShe.IoT.DeviceAggregation.Dto;
using JiShe.ServicePro.Core;
using JiShe.ServicePro.DeviceManagement.DeviceInfos;
using Volo.Abp;
namespace JiShe.IoT.DeviceAggregation
{
///
/// 设备聚合服务
///
public interface IDeviceAggregationService
{
///
/// 创建设备信息
///
///
///
Task CreateAsync(CreateDeviceAggregationInput input);
///
/// 删除设备信息
///
///
///
///
Task DeleteAsync(IdInput input);
///
/// 根据设备ID查询设备信息
///
///
///
///
Task FindByIdAsync(IdInput input);
}
}