using JiShe.IoT.IoTPlatformAggregation.Dto;
using JiShe.ServicePro.Commons;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.IoT.IoTPlatformAggregation
{
///
/// 平台聚合服务
///
public interface IIoTPlatformAggregationService
{
///
/// 获取平台产品信息
///
///
///
Task> GetIoTPlatformProductInfoAsync(IoTPlatformProductInfoInput input
);
///
/// 获取平台账号信息
///
///
///
Task> GetIoTPlatformAccountInfoAsync(IoTPlatformAccountInfoInput input
);
///
/// 获取平台产品物模型属性信息
///
///
///
Task> GetIoTPlatformProductPropertyInfoAsync(IoTPlatformProductPropertyInfoInput input
);
}
}