33 lines
955 B
C#
Raw Normal View History

2025-12-17 15:51:11 +08:00
using JiShe.IoT.IoTPlatformAggregation.Dto;
2025-12-22 15:36:35 +08:00
using JiShe.ServicePro.Commons;
2025-12-17 15:51:11 +08:00
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
);
2025-12-22 15:36:35 +08:00
/// <summary>
/// 获取平台产品物模型属性信息
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
Task<List<SelectResult>> GetIoTPlatformProductPropertyInfoAsync(IoTPlatformProductPropertyInfoInput input
);
2025-12-17 15:51:11 +08:00
}
}