Files
sy_hx_pbl_backend/DOAN.Service/PBL/IService/IMESInteractionServcie.cs

18 lines
369 B
C#
Raw Normal View History

2024-11-01 11:35:11 +08:00
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
{
2024-11-08 08:42:33 +08:00
2024-11-01 11:35:11 +08:00
bool MESLightUp(LightUpDto light);
bool MESLightDown(string scan_code);
}
}