zongzhibin
2024-11-23 52ea328589f08585046bd519e4c57e5dce24e1dd
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -200,6 +200,9 @@
        private string R_InboundNumberField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short R_Inbound_TaskIDField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short R_ModelField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -207,6 +210,9 @@
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string R_OutboundNumberField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short R_Outbound_TaskIDField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string R_ReadCodeResultField;
@@ -315,6 +321,19 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public short R_Inbound_TaskID {
            get {
                return this.R_Inbound_TaskIDField;
            }
            set {
                if ((this.R_Inbound_TaskIDField.Equals(value) != true)) {
                    this.R_Inbound_TaskIDField = value;
                    this.RaisePropertyChanged("R_Inbound_TaskID");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public short R_Model {
            get {
                return this.R_ModelField;
@@ -349,6 +368,19 @@
                if ((object.ReferenceEquals(this.R_OutboundNumberField, value) != true)) {
                    this.R_OutboundNumberField = value;
                    this.RaisePropertyChanged("R_OutboundNumber");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public short R_Outbound_TaskID {
            get {
                return this.R_Outbound_TaskIDField;
            }
            set {
                if ((this.R_Outbound_TaskIDField.Equals(value) != true)) {
                    this.R_Outbound_TaskIDField = value;
                    this.RaisePropertyChanged("R_Outbound_TaskID");
                }
            }
        }
@@ -481,7 +513,7 @@
        private bool W_IsRotateField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string W_KittingInfoField;
        private short W_KittingInfoField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short W_LengthField;
@@ -651,12 +683,12 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string W_KittingInfo {
        public short W_KittingInfo {
            get {
                return this.W_KittingInfoField;
            }
            set {
                if ((object.ReferenceEquals(this.W_KittingInfoField, value) != true)) {
                if ((this.W_KittingInfoField.Equals(value) != true)) {
                    this.W_KittingInfoField = value;
                    this.RaisePropertyChanged("W_KittingInfo");
                }
@@ -1468,16 +1500,16 @@
        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);
        iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, bool value, 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.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, bool value, string stationCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/OutboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/OutboundFinishConfirmResponse")]
        iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, string stationCode);
        iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, bool value, string stationCode);
        
        [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, string stationCode);
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> OutboundFinishConfirmAsync(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);
@@ -1617,20 +1649,20 @@
            return base.Channel.WriteQiTaoInfoAsync(deviceId, stationCode, value);
        }
        
        public iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirm(deviceId, stationCode);
        public iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, bool value, string stationCode) {
            return base.Channel.InboundFinishConfirm(deviceId, value, stationCode);
        }
        
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirmAsync(deviceId, stationCode);
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, bool value, string stationCode) {
            return base.Channel.InboundFinishConfirmAsync(deviceId, value, stationCode);
        }
        
        public iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, string stationCode) {
            return base.Channel.OutboundFinishConfirm(deviceId, stationCode);
        public iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, bool value, string stationCode) {
            return base.Channel.OutboundFinishConfirm(deviceId, value, stationCode);
        }
        
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> OutboundFinishConfirmAsync(int deviceId, string stationCode) {
            return base.Channel.OutboundFinishConfirmAsync(deviceId, stationCode);
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> OutboundFinishConfirmAsync(int deviceId, bool value, string stationCode) {
            return base.Channel.OutboundFinishConfirmAsync(deviceId, value, stationCode);
        }
        
        public iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID) {