20 lines
481 B
C#
20 lines
481 B
C#
using DOAN.Infrastructure.PLC;
|
|
using DOAN.Model.PBL.Dto;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.PBL.IService
|
|
{
|
|
public interface IMESInteractionServcie
|
|
{
|
|
|
|
bool TestPLc(string address, PLCTool pLCTool);
|
|
bool MESLightUp(LightUpDto light,PLCTool pLCTool);
|
|
bool MESLightDown(string scan_code,PLCTool pLCTool);
|
|
}
|
|
}
|