32 lines
757 B
C#
32 lines
757 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.andon;
|
|
|
|
namespace DOAN.Service.MES.andon.IService
|
|
{
|
|
public interface IAndonInteractionService
|
|
{
|
|
string[] GetLine();
|
|
|
|
int TestWatch();
|
|
int CallHandle(AndonFaultRecord query);
|
|
string CallHandleSCREEN(AndonFaultRecord query);
|
|
|
|
|
|
|
|
int SignIn(AndonFaultRecord response);
|
|
List<AndonFaultRecord> WaitingResponse();
|
|
/// <summary>
|
|
/// 监测超时发送邮件
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
string[] MonitoringMails();
|
|
void WatchPushAndon();
|
|
}
|
|
}
|