33
schangxiang@126.com
2024-12-08 7285fd041c9ed732ae2039c4cc54f3eb382d9112
CC/iWareCC_ASRS/Connected Services/StationService/Reference.cs
@@ -1321,9 +1321,6 @@
        private short W_PalletizingTaskIDField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_PersonAllowField;
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private bool W_ReqOutField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
@@ -1706,19 +1703,6 @@
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_PersonAllow {
            get {
                return this.W_PersonAllowField;
            }
            set {
                if ((this.W_PersonAllowField.Equals(value) != true)) {
                    this.W_PersonAllowField = value;
                    this.RaisePropertyChanged("W_PersonAllow");
                }
            }
        }
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool W_ReqOut {
            get {
                return this.W_ReqOutField;
@@ -1876,6 +1860,12 @@
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/IsHaveHeatBeat", ReplyAction="http://tempuri.org/IStationService/IsHaveHeatBeatResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> IsHaveHeatBeatAsync(int deviceId);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteBoolPlcData", ReplyAction="http://tempuri.org/IStationService/WriteBoolPlcDataResponse")]
        iWareCC.StationService.SdaResEntity WriteBoolPlcData(int deviceId, string dbAddress, bool value);
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteBoolPlcData", ReplyAction="http://tempuri.org/IStationService/WriteBoolPlcDataResponse")]
        System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteBoolPlcDataAsync(int deviceId, string dbAddress, bool value);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStationService/WriteQiTaoInfo", ReplyAction="http://tempuri.org/IStationService/WriteQiTaoInfoResponse")]
        iWareCC.StationService.SdaResEntity WriteQiTaoInfo(int deviceId, string stationCode, bool value);
@@ -2073,6 +2063,14 @@
            return base.Channel.IsHaveHeatBeatAsync(deviceId);
        }
        
        public iWareCC.StationService.SdaResEntity WriteBoolPlcData(int deviceId, string dbAddress, bool value) {
            return base.Channel.WriteBoolPlcData(deviceId, dbAddress, value);
        }
        public System.Threading.Tasks.Task<iWareCC.StationService.SdaResEntity> WriteBoolPlcDataAsync(int deviceId, string dbAddress, bool value) {
            return base.Channel.WriteBoolPlcDataAsync(deviceId, dbAddress, value);
        }
        public iWareCC.StationService.SdaResEntity WriteQiTaoInfo(int deviceId, string stationCode, bool value) {
            return base.Channel.WriteQiTaoInfo(deviceId, stationCode, value);
        }