leiqunqing
2026-01-19 ba8aa925e7901381ceb394adb53eca8723d1c4c5
´úÂë¹ÜÀí/WIDESEAWCS_Server/WIDESEAWCS_Server/WIDESEAWCS_IBasicInfoService/IScanStationService.cs
@@ -3,8 +3,10 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_DTO.BasicInfo;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_BasicInfoService
@@ -12,5 +14,19 @@
    public interface IScanStationService : IService<Dt_ScanStation>
    {
        public IRepository<Dt_ScanStation> Repository { get; }
        //启动PLC
        public WebResponseContent StartPLC(bool isStop);
        //暂停PLC
        public WebResponseContent PausePLC(bool isPause);
        //返回信号
        public WebResponseContent GetSignalStates();
        //获取成品信息
        public WebResponseContent GetLeftInitialData();
        //更新扫码状态
        public WebResponseContent UpdatePartScannedStatus(UpdatePartScannedStatusRequest updatePartScannedStatusRequest);
    }
}