| New file |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace WCS.Application |
| | | { |
| | | public interface IPlcHub |
| | | { |
| | | /// <summary> |
| | | /// 下发PLC连接状态 |
| | | /// </summary> |
| | | /// <param name="context"></param> |
| | | /// <returns></returns> |
| | | Task PublicPlcConn(WcsPlc context); |
| | | |
| | | /// <summary> |
| | | /// 下发工位状态 |
| | | /// </summary> |
| | | /// <param name="context"></param> |
| | | /// <returns></returns> |
| | | //Task PublicStationStatus(List<WcsDevice> context); |
| | | |
| | | /// <summary> |
| | | /// 下发报警信息 |
| | | /// </summary> |
| | | /// <param name="context"></param> |
| | | /// <returns></returns> |
| | | Task PublicAlarm(WcsAlarmInfoOutput context); |
| | | } |
| | | } |