23 lines
568 B
C#
23 lines
568 B
C#
using JiShe.ServicePro;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.IoT.BusinessSystemAggregation
|
|
{
|
|
/// <summary>
|
|
/// 业务系统聚合服务
|
|
/// </summary>
|
|
public interface IBusinessSystemAggregationService
|
|
{
|
|
/// <summary>
|
|
/// 接收业务系统指令信息
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<HttpDataResult> ReceiveCommandInfoAsync(OpenApiRequest input);
|
|
}
|
|
}
|