42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 平台聚合服务
|
|
/// </summary>
|
|
public interface IIoTPlatformAggregationService
|
|
{
|
|
/// <summary>
|
|
/// 获取平台产品信息
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<List<IoTPlatformProductInfoOutput>> GetIoTPlatformProductInfoAsync(IoTPlatformProductInfoInput input
|
|
);
|
|
|
|
|
|
/// <summary>
|
|
/// 获取平台账号信息
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<List<IoTPlatformAccountInfoOutput>> GetIoTPlatformAccountInfoAsync(IoTPlatformAccountInfoInput input
|
|
);
|
|
|
|
/// <summary>
|
|
/// 获取平台产品物模型属性信息
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<List<SelectResult>> GetIoTPlatformProductPropertyInfoAsync(IoTPlatformProductPropertyInfoInput input
|
|
);
|
|
}
|
|
}
|