| | |
| | | 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 |
| | |
| | | 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); |
| | | } |
| | | } |