| | |
| | | |
| | | public int TaskNum { get; set; } |
| | | } |
| | | |
| | | public enum SignalType |
| | | { |
| | | /// <summary> |
| | | /// PLC入库口请求 |
| | | /// </summary> |
| | | InEntranceRequest, |
| | | |
| | | /// <summary> |
| | | /// WCS入库口响应 |
| | | /// </summary> |
| | | InEntranceResponse, |
| | | |
| | | /// <summary> |
| | | /// PLC入库口请求复位 |
| | | /// </summary> |
| | | InEntranceRequestReset, |
| | | |
| | | /// <summary> |
| | | /// WCS入库口响应复位 |
| | | /// </summary> |
| | | InEntranceResponseReset, |
| | | |
| | | /// <summary> |
| | | /// PLC出库口请求 |
| | | /// </summary> |
| | | OutEntranceRequest, |
| | | |
| | | /// <summary> |
| | | /// WCS出库口响应 |
| | | /// </summary> |
| | | OutEntranceResponse, |
| | | |
| | | /// <summary> |
| | | /// PLC出库口请求复位 |
| | | /// </summary> |
| | | OutEntranceRequestReset, |
| | | |
| | | /// <summary> |
| | | /// WCS出库口响应复位 |
| | | /// </summary> |
| | | OutEntranceResponseReset, |
| | | |
| | | /// <summary> |
| | | /// PLC入库站台请求 |
| | | /// </summary> |
| | | InStationRequest, |
| | | |
| | | /// <summary> |
| | | /// WCS入库站台响应 |
| | | /// </summary> |
| | | InStationResponse, |
| | | |
| | | /// <summary> |
| | | /// PLC入库站台请求复位 |
| | | /// </summary> |
| | | InStationRequestReset, |
| | | |
| | | /// <summary> |
| | | /// WCS入库站台响应复位 |
| | | /// </summary> |
| | | InStationResponseReset, |
| | | |
| | | /// <summary> |
| | | /// PLC出库站台请求 |
| | | /// </summary> |
| | | OutStationRequest, |
| | | |
| | | /// <summary> |
| | | /// WCS出库站台响应 |
| | | /// </summary> |
| | | OutStationResponse, |
| | | |
| | | /// <summary> |
| | | /// PLC出库站台请求复位 |
| | | /// </summary> |
| | | OutStationRequestReset, |
| | | |
| | | /// <summary> |
| | | /// WCS出库站台响应复位 |
| | | /// </summary> |
| | | OutStationResponseReset, |
| | | } |
| | | |
| | | public enum PLCSignalType |
| | | { |
| | | RequestInbound = 1, |
| | | RequestInNextAddress = 2, |
| | | ConveyorLineInFinish = 3, |
| | | RequestOutbound = 4, |
| | | RequestOutNextAddress = 5, |
| | | ConveyorLineOutFinish = 6 |
| | | } |
| | | } |