ke_junjie
2025-06-04 2462b97ab51eb872b1a873cfd6de0b750123123a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
 
namespace WMSPatch.SrmServer {
    using System.Runtime.Serialization;
    using System;
    
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="TaskFinishClass", Namespace="http://tempuri.org/")]
    [System.SerializableAttribute()]
    public partial class TaskFinishClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
        
        [System.NonSerializedAttribute()]
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
        
        private bool resultField;
        
        private int statusIdField;
        
        [System.Runtime.Serialization.OptionalFieldAttribute()]
        private string messageField;
        
        private int isErrorField;
        
        [global::System.ComponentModel.BrowsableAttribute(false)]
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
            get {
                return this.extensionDataField;
            }
            set {
                this.extensionDataField = value;
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
        public bool result {
            get {
                return this.resultField;
            }
            set {
                if ((this.resultField.Equals(value) != true)) {
                    this.resultField = value;
                    this.RaisePropertyChanged("result");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
        public int statusId {
            get {
                return this.statusIdField;
            }
            set {
                if ((this.statusIdField.Equals(value) != true)) {
                    this.statusIdField = value;
                    this.RaisePropertyChanged("statusId");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
        public string message {
            get {
                return this.messageField;
            }
            set {
                if ((object.ReferenceEquals(this.messageField, value) != true)) {
                    this.messageField = value;
                    this.RaisePropertyChanged("message");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
        public int isError {
            get {
                return this.isErrorField;
            }
            set {
                if ((this.isErrorField.Equals(value) != true)) {
                    this.isErrorField = value;
                    this.RaisePropertyChanged("isError");
                }
            }
        }
        
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
        
        protected void RaisePropertyChanged(string propertyName) {
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
            if ((propertyChanged != null)) {
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="SendTaskClass", Namespace="http://tempuri.org/")]
    [System.SerializableAttribute()]
    public partial class SendTaskClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
        
        [System.NonSerializedAttribute()]
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
        
        private bool resultField;
        
        private int statusIdField;
        
        private int deviceIdField;
        
        private int outTransIdField;
        
        private int outTypeField;
        
        [global::System.ComponentModel.BrowsableAttribute(false)]
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
            get {
                return this.extensionDataField;
            }
            set {
                this.extensionDataField = value;
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
        public bool result {
            get {
                return this.resultField;
            }
            set {
                if ((this.resultField.Equals(value) != true)) {
                    this.resultField = value;
                    this.RaisePropertyChanged("result");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
        public int statusId {
            get {
                return this.statusIdField;
            }
            set {
                if ((this.statusIdField.Equals(value) != true)) {
                    this.statusIdField = value;
                    this.RaisePropertyChanged("statusId");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
        public int deviceId {
            get {
                return this.deviceIdField;
            }
            set {
                if ((this.deviceIdField.Equals(value) != true)) {
                    this.deviceIdField = value;
                    this.RaisePropertyChanged("deviceId");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
        public int outTransId {
            get {
                return this.outTransIdField;
            }
            set {
                if ((this.outTransIdField.Equals(value) != true)) {
                    this.outTransIdField = value;
                    this.RaisePropertyChanged("outTransId");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=4)]
        public int outType {
            get {
                return this.outTypeField;
            }
            set {
                if ((this.outTypeField.Equals(value) != true)) {
                    this.outTypeField = value;
                    this.RaisePropertyChanged("outType");
                }
            }
        }
        
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
        
        protected void RaisePropertyChanged(string propertyName) {
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
            if ((propertyChanged != null)) {
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    [System.Runtime.Serialization.CollectionDataContractAttribute(Name="ArrayOfInt", Namespace="http://tempuri.org/", ItemName="int")]
    [System.SerializableAttribute()]
    public class ArrayOfInt : System.Collections.Generic.List<int> {
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.ServiceContractAttribute(ConfigurationName="SrmServer.ISrmService")]
    public interface ISrmService {
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/GetSrmInfo", ReplyAction="http://tempuri.org/ISrmService/GetSrmInfoResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string GetSrmInfo(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/GetSrmInfo", ReplyAction="http://tempuri.org/ISrmService/GetSrmInfoResponse")]
        System.Threading.Tasks.Task<string> GetSrmInfoAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmDelete", ReplyAction="http://tempuri.org/ISrmService/SendSrmDeleteResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmDelete(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmDelete", ReplyAction="http://tempuri.org/ISrmService/SendSrmDeleteResponse")]
        System.Threading.Tasks.Task<int> SendSrmDeleteAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmTaskFinishConfirm", ReplyAction="http://tempuri.org/ISrmService/SendSrmTaskFinishConfirmResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmTaskFinishConfirm(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmTaskFinishConfirm", ReplyAction="http://tempuri.org/ISrmService/SendSrmTaskFinishConfirmResponse")]
        System.Threading.Tasks.Task<int> SendSrmTaskFinishConfirmAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmEStop", ReplyAction="http://tempuri.org/ISrmService/SendSrmEStopResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmEStop(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmEStop", ReplyAction="http://tempuri.org/ISrmService/SendSrmEStopResponse")]
        System.Threading.Tasks.Task<int> SendSrmEStopAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmMove", ReplyAction="http://tempuri.org/ISrmService/SendSrmMoveResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmMove(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmMove", ReplyAction="http://tempuri.org/ISrmService/SendSrmMoveResponse")]
        System.Threading.Tasks.Task<int> SendSrmMoveAsync(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmTask", ReplyAction="http://tempuri.org/ISrmService/SendSrmTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmTask(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmTask", ReplyAction="http://tempuri.org/ISrmService/SendSrmTaskResponse")]
        System.Threading.Tasks.Task<int> SendSrmTaskAsync(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SrmRlsAlert", ReplyAction="http://tempuri.org/ISrmService/SrmRlsAlertResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        void SrmRlsAlert(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SrmRlsAlert", ReplyAction="http://tempuri.org/ISrmService/SrmRlsAlertResponse")]
        System.Threading.Tasks.Task SrmRlsAlertAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/IsTaskFinish", ReplyAction="http://tempuri.org/ISrmService/IsTaskFinishResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int IsTaskFinish(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/IsTaskFinish", ReplyAction="http://tempuri.org/ISrmService/IsTaskFinishResponse")]
        System.Threading.Tasks.Task<int> IsTaskFinishAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/IsReady", ReplyAction="http://tempuri.org/ISrmService/IsReadyResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        bool IsReady(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/IsReady", ReplyAction="http://tempuri.org/ISrmService/IsReadyResponse")]
        System.Threading.Tasks.Task<bool> IsReadyAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/FinishTask", ReplyAction="http://tempuri.org/ISrmService/FinishTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int FinishTask(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/FinishTask", ReplyAction="http://tempuri.org/ISrmService/FinishTaskResponse")]
        System.Threading.Tasks.Task<int> FinishTaskAsync(int srmId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/TaskFinish", ReplyAction="http://tempuri.org/ISrmService/TaskFinishResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        WMSPatch.SrmServer.TaskFinishClass TaskFinish(int taskId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/TaskFinish", ReplyAction="http://tempuri.org/ISrmService/TaskFinishResponse")]
        System.Threading.Tasks.Task<WMSPatch.SrmServer.TaskFinishClass> TaskFinishAsync(int taskId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendTask", ReplyAction="http://tempuri.org/ISrmService/SendTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        WMSPatch.SrmServer.SendTaskClass SendTask(int palletType, string sourcePlace, string toPlace, int taskId, int taskType, int outType);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendTask", ReplyAction="http://tempuri.org/ISrmService/SendTaskResponse")]
        System.Threading.Tasks.Task<WMSPatch.SrmServer.SendTaskClass> SendTaskAsync(int palletType, string sourcePlace, string toPlace, int taskId, int taskType, int outType);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmDeleteAll", ReplyAction="http://tempuri.org/ISrmService/SendSrmDeleteAllResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        int SendSrmDeleteAll(int srmID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/SendSrmDeleteAll", ReplyAction="http://tempuri.org/ISrmService/SendSrmDeleteAllResponse")]
        System.Threading.Tasks.Task<int> SendSrmDeleteAllAsync(int srmID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/DeleteMainTask", ReplyAction="http://tempuri.org/ISrmService/DeleteMainTaskResponse")]
        WMSPatch.SrmServer.DeleteMainTaskResponse DeleteMainTask(WMSPatch.SrmServer.DeleteMainTaskRequest request);
        
        // CODEGEN: 正在生成消息协定,应为该操作具有多个返回值。
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISrmService/DeleteMainTask", ReplyAction="http://tempuri.org/ISrmService/DeleteMainTaskResponse")]
        System.Threading.Tasks.Task<WMSPatch.SrmServer.DeleteMainTaskResponse> DeleteMainTaskAsync(WMSPatch.SrmServer.DeleteMainTaskRequest request);
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.MessageContractAttribute(WrapperName="DeleteMainTask", WrapperNamespace="http://tempuri.org/", IsWrapped=true)]
    public partial class DeleteMainTaskRequest {
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=0)]
        public int id;
        
        public DeleteMainTaskRequest() {
        }
        
        public DeleteMainTaskRequest(int id) {
            this.id = id;
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.MessageContractAttribute(WrapperName="DeleteMainTaskResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)]
    public partial class DeleteMainTaskResponse {
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=0)]
        public WMSPatch.SrmServer.ArrayOfInt tranDoingId;
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=1)]
        public WMSPatch.SrmServer.ArrayOfInt rgvDoingId;
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=2)]
        public WMSPatch.SrmServer.ArrayOfInt srmDoingId;
        
        public DeleteMainTaskResponse() {
        }
        
        public DeleteMainTaskResponse(WMSPatch.SrmServer.ArrayOfInt tranDoingId, WMSPatch.SrmServer.ArrayOfInt rgvDoingId, WMSPatch.SrmServer.ArrayOfInt srmDoingId) {
            this.tranDoingId = tranDoingId;
            this.rgvDoingId = rgvDoingId;
            this.srmDoingId = srmDoingId;
        }
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public interface ISrmServiceChannel : WMSPatch.SrmServer.ISrmService, System.ServiceModel.IClientChannel {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public partial class SrmServiceClient : System.ServiceModel.ClientBase<WMSPatch.SrmServer.ISrmService>, WMSPatch.SrmServer.ISrmService {
        
        public SrmServiceClient() {
        }
        
        public SrmServiceClient(string endpointConfigurationName) : 
                base(endpointConfigurationName) {
        }
        
        public SrmServiceClient(string endpointConfigurationName, string remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public SrmServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public SrmServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding, remoteAddress) {
        }
        
        public string GetSrmInfo(int srmId) {
            return base.Channel.GetSrmInfo(srmId);
        }
        
        public System.Threading.Tasks.Task<string> GetSrmInfoAsync(int srmId) {
            return base.Channel.GetSrmInfoAsync(srmId);
        }
        
        public int SendSrmDelete(int srmId) {
            return base.Channel.SendSrmDelete(srmId);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmDeleteAsync(int srmId) {
            return base.Channel.SendSrmDeleteAsync(srmId);
        }
        
        public int SendSrmTaskFinishConfirm(int srmId) {
            return base.Channel.SendSrmTaskFinishConfirm(srmId);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmTaskFinishConfirmAsync(int srmId) {
            return base.Channel.SendSrmTaskFinishConfirmAsync(srmId);
        }
        
        public int SendSrmEStop(int srmId) {
            return base.Channel.SendSrmEStop(srmId);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmEStopAsync(int srmId) {
            return base.Channel.SendSrmEStopAsync(srmId);
        }
        
        public int SendSrmMove(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather) {
            return base.Channel.SendSrmMove(srmId, taskId, toPlace, command, palletType, taskFather);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmMoveAsync(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather) {
            return base.Channel.SendSrmMoveAsync(srmId, taskId, toPlace, command, palletType, taskFather);
        }
        
        public int SendSrmTask(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather) {
            return base.Channel.SendSrmTask(srmId, taskId, sourcePlace, toPlace, pallet, taskFather);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmTaskAsync(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather) {
            return base.Channel.SendSrmTaskAsync(srmId, taskId, sourcePlace, toPlace, pallet, taskFather);
        }
        
        public void SrmRlsAlert(int srmId) {
            base.Channel.SrmRlsAlert(srmId);
        }
        
        public System.Threading.Tasks.Task SrmRlsAlertAsync(int srmId) {
            return base.Channel.SrmRlsAlertAsync(srmId);
        }
        
        public int IsTaskFinish(int srmId) {
            return base.Channel.IsTaskFinish(srmId);
        }
        
        public System.Threading.Tasks.Task<int> IsTaskFinishAsync(int srmId) {
            return base.Channel.IsTaskFinishAsync(srmId);
        }
        
        public bool IsReady(int srmId) {
            return base.Channel.IsReady(srmId);
        }
        
        public System.Threading.Tasks.Task<bool> IsReadyAsync(int srmId) {
            return base.Channel.IsReadyAsync(srmId);
        }
        
        public int FinishTask(int srmId) {
            return base.Channel.FinishTask(srmId);
        }
        
        public System.Threading.Tasks.Task<int> FinishTaskAsync(int srmId) {
            return base.Channel.FinishTaskAsync(srmId);
        }
        
        public WMSPatch.SrmServer.TaskFinishClass TaskFinish(int taskId) {
            return base.Channel.TaskFinish(taskId);
        }
        
        public System.Threading.Tasks.Task<WMSPatch.SrmServer.TaskFinishClass> TaskFinishAsync(int taskId) {
            return base.Channel.TaskFinishAsync(taskId);
        }
        
        public WMSPatch.SrmServer.SendTaskClass SendTask(int palletType, string sourcePlace, string toPlace, int taskId, int taskType, int outType) {
            return base.Channel.SendTask(palletType, sourcePlace, toPlace, taskId, taskType, outType);
        }
        
        public System.Threading.Tasks.Task<WMSPatch.SrmServer.SendTaskClass> SendTaskAsync(int palletType, string sourcePlace, string toPlace, int taskId, int taskType, int outType) {
            return base.Channel.SendTaskAsync(palletType, sourcePlace, toPlace, taskId, taskType, outType);
        }
        
        public int SendSrmDeleteAll(int srmID) {
            return base.Channel.SendSrmDeleteAll(srmID);
        }
        
        public System.Threading.Tasks.Task<int> SendSrmDeleteAllAsync(int srmID) {
            return base.Channel.SendSrmDeleteAllAsync(srmID);
        }
        
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        WMSPatch.SrmServer.DeleteMainTaskResponse WMSPatch.SrmServer.ISrmService.DeleteMainTask(WMSPatch.SrmServer.DeleteMainTaskRequest request) {
            return base.Channel.DeleteMainTask(request);
        }
        
        public WMSPatch.SrmServer.ArrayOfInt DeleteMainTask(int id, out WMSPatch.SrmServer.ArrayOfInt rgvDoingId, out WMSPatch.SrmServer.ArrayOfInt srmDoingId) {
            WMSPatch.SrmServer.DeleteMainTaskRequest inValue = new WMSPatch.SrmServer.DeleteMainTaskRequest();
            inValue.id = id;
            WMSPatch.SrmServer.DeleteMainTaskResponse retVal = ((WMSPatch.SrmServer.ISrmService)(this)).DeleteMainTask(inValue);
            rgvDoingId = retVal.rgvDoingId;
            srmDoingId = retVal.srmDoingId;
            return retVal.tranDoingId;
        }
        
        public System.Threading.Tasks.Task<WMSPatch.SrmServer.DeleteMainTaskResponse> DeleteMainTaskAsync(WMSPatch.SrmServer.DeleteMainTaskRequest request) {
            return base.Channel.DeleteMainTaskAsync(request);
        }
    }
}