From 1b10882a0a46c8b25331ccd2628f7a2a6db8b13f Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周一, 16 12月 2024 17:35:10 +0800 Subject: [PATCH] 11 --- CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs index dc6c507..1e3de35 100644 --- a/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs +++ b/CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs @@ -976,6 +976,9 @@ private bool R_OutboundFinishField; [System.Runtime.Serialization.OptionalFieldAttribute()] + private bool R_OutboundModeField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] private string R_OutboundNumberField; [System.Runtime.Serialization.OptionalFieldAttribute()] @@ -1169,6 +1172,19 @@ if ((this.R_OutboundFinishField.Equals(value) != true)) { this.R_OutboundFinishField = value; this.RaisePropertyChanged("R_OutboundFinish"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool R_OutboundMode { + get { + return this.R_OutboundModeField; + } + set { + if ((this.R_OutboundModeField.Equals(value) != true)) { + this.R_OutboundModeField = value; + this.RaisePropertyChanged("R_OutboundMode"); } } } @@ -1470,6 +1486,9 @@ [System.Runtime.Serialization.OptionalFieldAttribute()] private short W_PalletizingTaskIDField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private bool W_PartClearField; [System.Runtime.Serialization.OptionalFieldAttribute()] private bool W_ReqOutField; @@ -1867,6 +1886,19 @@ } [System.Runtime.Serialization.DataMemberAttribute()] + public bool W_PartClear { + get { + return this.W_PartClearField; + } + set { + if ((this.W_PartClearField.Equals(value) != true)) { + this.W_PartClearField = value; + this.RaisePropertyChanged("W_PartClear"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] public bool W_ReqOut { get { return this.W_ReqOutField; @@ -2106,6 +2138,12 @@ [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/ChangeMode", ReplyAction="http://tempuri.org/IStationService/ChangeModeResponse")] System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> ChangeModeAsync(int deviceId, int value, string stationCode); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/PartClear", ReplyAction="http://tempuri.org/IStationService/PartClearResponse")] + iWareCC.StationService.SdaResEntity PartClear(int deviceId, bool value, string stationCode); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/PartClear", ReplyAction="http://tempuri.org/IStationService/PartClearResponse")] + System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> PartClearAsync(int deviceId, bool value, string stationCode); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteInStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteInStoreTaskInfoResponse")] iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID); @@ -2332,6 +2370,14 @@ return base.Channel.ChangeModeAsync(deviceId, value, stationCode); } + public iWareCC.StationService.SdaResEntity PartClear(int deviceId, bool value, string stationCode) { + return base.Channel.PartClear(deviceId, value, stationCode); + } + + public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> PartClearAsync(int deviceId, bool value, string stationCode) { + return base.Channel.PartClearAsync(deviceId, value, stationCode); + } + public iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID) { return base.Channel.WriteInStoreTaskInfo(deviceId, stationCode, toPlaceNo, length, width, height, inbound_TaskID); } -- Gitblit v1.9.3