pblbackend/DOAN.Service/PBL/IService/IMESInteractionServcie.cs
2024-11-07 21:27:56 +08:00

18 lines
392 B
C#

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
{
int TestPLC(int num);
bool MESLightUp(LightUpDto light);
bool MESLightDown(string scan_code);
}
}