| | |
| | | using iWareModel; |
| | | using iWareSda.Model; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | [OperationContract] |
| | | StationView GetStationInfo(int deviceId); |
| | | |
| | | /// <summary> |
| | | /// 获取当前正在报警的报警列表 |
| | | /// </summary> |
| | | /// <param name="deviceId"></param> |
| | | /// <returns></returns> |
| | | [OperationContract] |
| | | List<DeviceWarningInfo> GetWaringInfoList(int deviceId, List<WmsConfigDeviceWarning> configDeviceWarningList); |
| | | |
| | | [OperationContract] |
| | | SdaResEntity IsTaskFinish(int deviceId, int taskId); |
| | | |
| | |
| | | /// <returns></returns> |
| | | [OperationContract] |
| | | SdaResEntity IsHaveHeatBeat(int deviceId); |
| | | |
| | | /// <summary> |
| | | /// 写PLC bool |
| | | /// </summary> |
| | | /// <param name="deviceId"></param> |
| | | /// <param name="dbAddress"></param> |
| | | /// <param name="value"></param> |
| | | /// <returns></returns> |
| | | [OperationContract] |
| | | SdaResEntity WriteBoolPlcData(int deviceId, string dbAddress, bool value); |
| | | |
| | | /// <summary> |
| | | /// 写入齐套信息 |
| | |
| | | /// <returns></returns> |
| | | [OperationContract] |
| | | SdaResEntity WriteStation_AllowIn(int deviceId, bool value, string stationCode); |
| | | |
| | | |
| | | /// <summary> |
| | | /// 写入 人工放行 |
| | | /// </summary> |
| | | /// <param name="deviceId"></param> |
| | | /// <param name="value"></param> |
| | | /// <param name="stationCode"></param> |
| | | /// <returns></returns> |
| | | [OperationContract] |
| | | SdaResEntity WriteStation_PersonAllow(int deviceId, bool value, string stationCode); |
| | | } |
| | | } |