pblbackend/DOAN.Service/PBL/IService/IMESInteractionServcie.cs

20 lines
481 B
C#
Raw Normal View History

2024-11-13 15:53:15 +08:00
using DOAN.Infrastructure.PLC;
using DOAN.Model.PBL.Dto;
2024-11-01 11:35:11 +08:00
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
{
2024-11-13 15:53:15 +08:00
bool TestPLc(string address, PLCTool pLCTool);
bool MESLightUp(LightUpDto light,PLCTool pLCTool);
bool MESLightDown(string scan_code,PLCTool pLCTool);
2024-11-01 11:35:11 +08:00
}
}