222
schangxiang@126.com
2024-11-23 520067288fb790f50d7732ef8570b3b7f1205d4b
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -194,6 +194,9 @@
        private short R_DestinationField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool R_ForceOutboundModeField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool R_InboundFinishField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -290,6 +293,19 @@
                if ((this.R_DestinationField.Equals(value) != true)) {
                    this.R_DestinationField = value;
                    this.RaisePropertyChanged("R_Destination");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool R_ForceOutboundMode {
            get {
                return this.R_ForceOutboundModeField;
            }
            set {
                if ((this.R_ForceOutboundModeField.Equals(value) != true)) {
                    this.R_ForceOutboundModeField = value;
                    this.RaisePropertyChanged("R_ForceOutboundMode");
                }
            }
        }
@@ -498,7 +514,7 @@
        private int W_Destination_InField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string W_Destination_OutField;
        private int W_Destination_OutField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short W_HeightField;
@@ -507,7 +523,7 @@
        private bool W_InboundFinishConfirmField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private int W_Inbound_TaskIDField;
        private short W_Inbound_TaskIDField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_IsRotateField;
@@ -519,10 +535,13 @@
        private short W_LengthField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short W_ModeField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_OutboundFinishConfirmField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private int W_Outbound_TaskIDField;
        private short W_Outbound_TaskIDField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string W_PackageLengthField;
@@ -618,12 +637,12 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string W_Destination_Out {
        public int W_Destination_Out {
            get {
                return this.W_Destination_OutField;
            }
            set {
                if ((object.ReferenceEquals(this.W_Destination_OutField, value) != true)) {
                if ((this.W_Destination_OutField.Equals(value) != true)) {
                    this.W_Destination_OutField = value;
                    this.RaisePropertyChanged("W_Destination_Out");
                }
@@ -657,7 +676,7 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int W_Inbound_TaskID {
        public short W_Inbound_TaskID {
            get {
                return this.W_Inbound_TaskIDField;
            }
@@ -709,6 +728,19 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public short W_Mode {
            get {
                return this.W_ModeField;
            }
            set {
                if ((this.W_ModeField.Equals(value) != true)) {
                    this.W_ModeField = value;
                    this.RaisePropertyChanged("W_Mode");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_OutboundFinishConfirm {
            get {
                return this.W_OutboundFinishConfirmField;
@@ -722,7 +754,7 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int W_Outbound_TaskID {
        public short W_Outbound_TaskID {
            get {
                return this.W_Outbound_TaskIDField;
            }
@@ -1511,6 +1543,12 @@
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/OutboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/OutboundFinishConfirmResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> OutboundFinishConfirmAsync(int deviceId, bool value, string stationCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/ChangeMode", ReplyAction="http://tempuri.org/IStationService/ChangeModeResponse")]
        iWareCC.StationService.SdaResEntity ChangeMode(int deviceId, int value, string stationCode);
        [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/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);
        
@@ -1665,6 +1703,14 @@
            return base.Channel.OutboundFinishConfirmAsync(deviceId, value, stationCode);
        }
        
        public iWareCC.StationService.SdaResEntity ChangeMode(int deviceId, int value, string stationCode) {
            return base.Channel.ChangeMode(deviceId, value, stationCode);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> ChangeModeAsync(int deviceId, int value, string stationCode) {
            return base.Channel.ChangeModeAsync(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);
        }