24 lines
623 B
C#
24 lines
623 B
C#
|
|
using JiShe.IoT.IoTPlatformAggregation.Dto;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.IoT.IoTPlatformAggregation
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 平台聚合服务
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IIoTPlatformAggregationService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取平台产品信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="input"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
Task<List<IoTPlatformProductInfoOutput>> GetIoTPlatformProductInfoAsync(IoTPlatformProductInfoInput input
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
}
|