19 lines
427 B
C#
19 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WCS.Model;
|
|
using WCS.Model.WebSocketModel;
|
|
|
|
namespace WCS.BLL.Services.IService
|
|
{
|
|
/// <summary>
|
|
/// 处理、查询报警使用的服务
|
|
/// </summary>
|
|
public interface IWarningService
|
|
{
|
|
public Task<ResponseCommon<object>> SolveWarning(SolveWarningRequest request);
|
|
}
|
|
}
|