22 lines
503 B
C#
22 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Waste.Application.ThirdApiInfo.Message
|
|
{
|
|
/// <summary>
|
|
/// 设备消息推送给第三方处理
|
|
/// </summary>
|
|
public interface IMessageService
|
|
{
|
|
/// <summary>
|
|
/// 消息发送
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task SeedMessageAsync(SendMessageS2SDto input);
|
|
}
|
|
}
|