20 lines
448 B
C#
20 lines
448 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.MES.andon;
|
|
|
|
namespace ZR.Service.MES.andon.IService
|
|
{
|
|
public interface IAndonInteractionService
|
|
{
|
|
|
|
int CallHandle(AndonFaultRecord query);
|
|
int SignIn(AndonFaultRecord response);
|
|
List<AndonFaultRecord> WaitingResponse();
|
|
}
|
|
}
|