222
schangxiang@126.com
2024-11-21 0eaa55a507f09c22a65b962d726872ece93acff5
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -472,6 +472,9 @@
        private short W_HeightField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_InboundFinishConfirmField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_IsRotateField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -598,6 +601,19 @@
                if ((this.W_HeightField.Equals(value) != true)) {
                    this.W_HeightField = value;
                    this.RaisePropertyChanged("W_Height");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_InboundFinishConfirm {
            get {
                return this.W_InboundFinishConfirmField;
            }
            set {
                if ((this.W_InboundFinishConfirmField.Equals(value) != true)) {
                    this.W_InboundFinishConfirmField = value;
                    this.RaisePropertyChanged("W_InboundFinishConfirm");
                }
            }
        }
@@ -1419,6 +1435,12 @@
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteQiTaoInfo", ReplyAction="http://tempuri.org/IStationService/WriteQiTaoInfoResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteQiTaoInfoAsync(int deviceId, string stationCode, bool value);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/InboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/InboundFinishConfirmResponse")]
        iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/InboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/InboundFinishConfirmResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, 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);
        
@@ -1551,6 +1573,14 @@
            return base.Channel.WriteQiTaoInfoAsync(deviceId, stationCode, value);
        }
        
        public iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirm(deviceId, stationCode);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirmAsync(deviceId, stationCode);
        }
        public iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height) {
            return base.Channel.WriteInStoreTaskInfo(deviceId, stationCode, toPlaceNo, length, width, height);
        }