You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
558 B
C#
22 lines
558 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Common.Data;
|
|
|
|
namespace DS.WMS.Core.OpenApiModule.Interface;
|
|
|
|
public interface IOpenService
|
|
{
|
|
/// <summary>
|
|
/// 处理海康高温报警
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult> HKDealHighTemperature(LinkEventNotify data);
|
|
|
|
|
|
/// <summary>
|
|
/// 处理海康越界侦测报警
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult> HKDealLineDetection(LinkEventNotify data);
|
|
} |