dengjunjie
5 天以前 b52018589bf6c7ec1d51ce8ad000a7aa993b0ab5
´úÂë¹ÜÀí/WIDESEAWCS_Server/WIDESEAWCS_Server/WIDESEAWCS_IBasicInfoService/IScanStationService.cs
@@ -1,10 +1,13 @@
using System;
using OfficeOpenXml;
using System;
using System.Collections.Generic;
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 +15,23 @@
    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);
        // ä¸‹è½½æµç¨‹å¡
        public WebResponseContent ExportData();
    }
}