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