schangxiang@126.com
2024-11-22 48f4481b61e6da5878415c3bc7ad5a1881244a93
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -472,6 +472,12 @@
        private short W_HeightField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_InboundFinishConfirmField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private int W_Inbound_TaskIDField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_IsRotateField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -481,6 +487,12 @@
        private short W_LengthField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_OutboundFinishConfirmField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private int W_Outbound_TaskIDField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string W_PackageLengthField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -488,9 +500,6 @@
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_ReqOutField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string W_TaskIDField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private short W_WidthField;
@@ -603,6 +612,32 @@
        }
        
        [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");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int W_Inbound_TaskID {
            get {
                return this.W_Inbound_TaskIDField;
            }
            set {
                if ((this.W_Inbound_TaskIDField.Equals(value) != true)) {
                    this.W_Inbound_TaskIDField = value;
                    this.RaisePropertyChanged("W_Inbound_TaskID");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_IsRotate {
            get {
                return this.W_IsRotateField;
@@ -642,6 +677,32 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_OutboundFinishConfirm {
            get {
                return this.W_OutboundFinishConfirmField;
            }
            set {
                if ((this.W_OutboundFinishConfirmField.Equals(value) != true)) {
                    this.W_OutboundFinishConfirmField = value;
                    this.RaisePropertyChanged("W_OutboundFinishConfirm");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int W_Outbound_TaskID {
            get {
                return this.W_Outbound_TaskIDField;
            }
            set {
                if ((this.W_Outbound_TaskIDField.Equals(value) != true)) {
                    this.W_Outbound_TaskIDField = value;
                    this.RaisePropertyChanged("W_Outbound_TaskID");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string W_PackageLength {
            get {
                return this.W_PackageLengthField;
@@ -676,19 +737,6 @@
                if ((this.W_ReqOutField.Equals(value) != true)) {
                    this.W_ReqOutField = value;
                    this.RaisePropertyChanged("W_ReqOut");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string W_TaskID {
            get {
                return this.W_TaskIDField;
            }
            set {
                if ((object.ReferenceEquals(this.W_TaskIDField, value) != true)) {
                    this.W_TaskIDField = value;
                    this.RaisePropertyChanged("W_TaskID");
                }
            }
        }
@@ -1419,11 +1467,29 @@
        [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/WriteInStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteInStoreTaskInfoResponse")]
        iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height);
        [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/OutboundFinishConfirm", ReplyAction="http://tempuri.org/IStationService/OutboundFinishConfirmResponse")]
        iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, 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.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteInStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteInStoreTaskInfoResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteInStoreTaskInfoAsync(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height);
        iWareCC.StationService.SdaResEntity WriteInStoreTaskInfo(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteInStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteInStoreTaskInfoResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteInStoreTaskInfoAsync(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteOutStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteOutStoreTaskInfoResponse")]
        iWareCC.StationService.SdaResEntity WriteOutStoreTaskInfo(int deviceId, string stationCode, string sourcePlaceNo, int outbound_TaskID);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteOutStoreTaskInfo", ReplyAction="http://tempuri.org/IStationService/WriteOutStoreTaskInfoResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteOutStoreTaskInfoAsync(int deviceId, string stationCode, string sourcePlaceNo, int outbound_TaskID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteStation_FinishACK", ReplyAction="http://tempuri.org/IStationService/WriteStation_FinishACKResponse")]
        iWareCC.StationService.SdaResEntity WriteStation_FinishACK(int deviceId, bool value, int plcTaskId);
@@ -1551,12 +1617,36 @@
            return base.Channel.WriteQiTaoInfoAsync(deviceId, stationCode, value);
        }
        
        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);
        public iWareCC.StationService.SdaResEntity InboundFinishConfirm(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirm(deviceId, stationCode);
        }
        
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteInStoreTaskInfoAsync(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height) {
            return base.Channel.WriteInStoreTaskInfoAsync(deviceId, stationCode, toPlaceNo, length, width, height);
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> InboundFinishConfirmAsync(int deviceId, string stationCode) {
            return base.Channel.InboundFinishConfirmAsync(deviceId, stationCode);
        }
        public iWareCC.StationService.SdaResEntity OutboundFinishConfirm(int deviceId, string stationCode) {
            return base.Channel.OutboundFinishConfirm(deviceId, stationCode);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> OutboundFinishConfirmAsync(int deviceId, string stationCode) {
            return base.Channel.OutboundFinishConfirmAsync(deviceId, 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);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteInStoreTaskInfoAsync(int deviceId, string stationCode, string toPlaceNo, short length, short width, short height, int inbound_TaskID) {
            return base.Channel.WriteInStoreTaskInfoAsync(deviceId, stationCode, toPlaceNo, length, width, height, inbound_TaskID);
        }
        public iWareCC.StationService.SdaResEntity WriteOutStoreTaskInfo(int deviceId, string stationCode, string sourcePlaceNo, int outbound_TaskID) {
            return base.Channel.WriteOutStoreTaskInfo(deviceId, stationCode, sourcePlaceNo, outbound_TaskID);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteOutStoreTaskInfoAsync(int deviceId, string stationCode, string sourcePlaceNo, int outbound_TaskID) {
            return base.Channel.WriteOutStoreTaskInfoAsync(deviceId, stationCode, sourcePlaceNo, outbound_TaskID);
        }
        
        public iWareCC.StationService.SdaResEntity WriteStation_FinishACK(int deviceId, bool value, int plcTaskId) {