schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
 
namespace IWareCC.wmsService {
    using System.Runtime.Serialization;
    using System;
    
    
    [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="wmsService.Iapitest")]
    public interface Iapitest {
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/callContainer", ReplyAction="http://tempuri.org/Iapitest/callContainerResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        void callContainer(int containerTypeId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/callContainer", ReplyAction="http://tempuri.org/Iapitest/callContainerResponse")]
        System.Threading.Tasks.Task callContainerAsync(int containerTypeId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/sortingConfirm", ReplyAction="http://tempuri.org/Iapitest/sortingConfirmResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string sortingConfirm(string PlateCode, string Products, string percentage);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/sortingConfirm", ReplyAction="http://tempuri.org/Iapitest/sortingConfirmResponse")]
        System.Threading.Tasks.Task<string> sortingConfirmAsync(string PlateCode, string Products, string percentage);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/madeDish", ReplyAction="http://tempuri.org/Iapitest/madeDishResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        void madeDish(string containerCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/madeDish", ReplyAction="http://tempuri.org/Iapitest/madeDishResponse")]
        System.Threading.Tasks.Task madeDishAsync(string containerCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/subtractQty", ReplyAction="http://tempuri.org/Iapitest/subtractQtyResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        bool subtractQty(string subInfo);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/subtractQty", ReplyAction="http://tempuri.org/Iapitest/subtractQtyResponse")]
        System.Threading.Tasks.Task<bool> subtractQtyAsync(string subInfo);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getToPlace", ReplyAction="http://tempuri.org/Iapitest/getToPlaceResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string getToPlace(int taskId, int continerType, int height, int wmsTaskId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getToPlace", ReplyAction="http://tempuri.org/Iapitest/getToPlaceResponse")]
        System.Threading.Tasks.Task<string> getToPlaceAsync(int taskId, int continerType, int height, int wmsTaskId);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/receiptConfirm", ReplyAction="http://tempuri.org/Iapitest/receiptConfirmResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string receiptConfirm(string receipt);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/receiptConfirm", ReplyAction="http://tempuri.org/Iapitest/receiptConfirmResponse")]
        System.Threading.Tasks.Task<string> receiptConfirmAsync(string receipt);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getPoList", ReplyAction="http://tempuri.org/Iapitest/getPoListResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string getPoList(string PoCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getPoList", ReplyAction="http://tempuri.org/Iapitest/getPoListResponse")]
        System.Threading.Tasks.Task<string> getPoListAsync(string PoCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/StockOutConfirm", ReplyAction="http://tempuri.org/Iapitest/StockOutConfirmResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string StockOutConfirm(string outList);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/StockOutConfirm", ReplyAction="http://tempuri.org/Iapitest/StockOutConfirmResponse")]
        System.Threading.Tasks.Task<string> StockOutConfirmAsync(string outList);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/takeStock", ReplyAction="http://tempuri.org/Iapitest/takeStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string takeStock(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/takeStock", ReplyAction="http://tempuri.org/Iapitest/takeStockResponse")]
        System.Threading.Tasks.Task<string> takeStockAsync(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/reverser", ReplyAction="http://tempuri.org/Iapitest/reverserResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string reverser(string res);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/reverser", ReplyAction="http://tempuri.org/Iapitest/reverserResponse")]
        System.Threading.Tasks.Task<string> reverserAsync(string res);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getDeviceInfo", ReplyAction="http://tempuri.org/Iapitest/getDeviceInfoResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string getDeviceInfo(string startTime, string endTime);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getDeviceInfo", ReplyAction="http://tempuri.org/Iapitest/getDeviceInfoResponse")]
        System.Threading.Tasks.Task<string> getDeviceInfoAsync(string startTime, string endTime);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/outStockTaskList", ReplyAction="http://tempuri.org/Iapitest/outStockTaskListResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string outStockTaskList(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/outStockTaskList", ReplyAction="http://tempuri.org/Iapitest/outStockTaskListResponse")]
        System.Threading.Tasks.Task<string> outStockTaskListAsync(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/inStockTask", ReplyAction="http://tempuri.org/Iapitest/inStockTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string inStockTask(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/inStockTask", ReplyAction="http://tempuri.org/Iapitest/inStockTaskResponse")]
        System.Threading.Tasks.Task<string> inStockTaskAsync(string takes);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/unlock", ReplyAction="http://tempuri.org/Iapitest/unlockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string unlock(int isremove, string positionName, string username);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/unlock", ReplyAction="http://tempuri.org/Iapitest/unlockResponse")]
        System.Threading.Tasks.Task<string> unlockAsync(int isremove, string positionName, string username);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/resetChaiDieDevice", ReplyAction="http://tempuri.org/Iapitest/resetChaiDieDeviceResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string resetChaiDieDevice(string deviceCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/resetChaiDieDevice", ReplyAction="http://tempuri.org/Iapitest/resetChaiDieDeviceResponse")]
        System.Threading.Tasks.Task<string> resetChaiDieDeviceAsync(string deviceCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/productStockInfo", ReplyAction="http://tempuri.org/Iapitest/productStockInfoResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string productStockInfo(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/productStockInfo", ReplyAction="http://tempuri.org/Iapitest/productStockInfoResponse")]
        System.Threading.Tasks.Task<string> productStockInfoAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/DeleteProductStock", ReplyAction="http://tempuri.org/Iapitest/DeleteProductStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string DeleteProductStock(int deleteId, string userName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/DeleteProductStock", ReplyAction="http://tempuri.org/Iapitest/DeleteProductStockResponse")]
        System.Threading.Tasks.Task<string> DeleteProductStockAsync(int deleteId, string userName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/updateProductStock", ReplyAction="http://tempuri.org/Iapitest/updateProductStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string updateProductStock(string updateInfo);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/updateProductStock", ReplyAction="http://tempuri.org/Iapitest/updateProductStockResponse")]
        System.Threading.Tasks.Task<string> updateProductStockAsync(string updateInfo);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/moveStock", ReplyAction="http://tempuri.org/Iapitest/moveStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string moveStock(string positionName, string username);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/moveStock", ReplyAction="http://tempuri.org/Iapitest/moveStockResponse")]
        System.Threading.Tasks.Task<string> moveStockAsync(string positionName, string username);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/lackData", ReplyAction="http://tempuri.org/Iapitest/lackDataResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string lackData(string orderCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/lackData", ReplyAction="http://tempuri.org/Iapitest/lackDataResponse")]
        System.Threading.Tasks.Task<string> lackDataAsync(string orderCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/outInTaskList", ReplyAction="http://tempuri.org/Iapitest/outInTaskListResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string outInTaskList(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/outInTaskList", ReplyAction="http://tempuri.org/Iapitest/outInTaskListResponse")]
        System.Threading.Tasks.Task<string> outInTaskListAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/receiptConvert", ReplyAction="http://tempuri.org/Iapitest/receiptConvertResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string receiptConvert(string receipt);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/receiptConvert", ReplyAction="http://tempuri.org/Iapitest/receiptConvertResponse")]
        System.Threading.Tasks.Task<string> receiptConvertAsync(string receipt);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findProductStock", ReplyAction="http://tempuri.org/Iapitest/findProductStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string findProductStock(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findProductStock", ReplyAction="http://tempuri.org/Iapitest/findProductStockResponse")]
        System.Threading.Tasks.Task<string> findProductStockAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findOldLibraryEarlyWarning", ReplyAction="http://tempuri.org/Iapitest/findOldLibraryEarlyWarningResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string findOldLibraryEarlyWarning(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findOldLibraryEarlyWarning", ReplyAction="http://tempuri.org/Iapitest/findOldLibraryEarlyWarningResponse")]
        System.Threading.Tasks.Task<string> findOldLibraryEarlyWarningAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findSendToSapData", ReplyAction="http://tempuri.org/Iapitest/findSendToSapDataResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string findSendToSapData(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findSendToSapData", ReplyAction="http://tempuri.org/Iapitest/findSendToSapDataResponse")]
        System.Threading.Tasks.Task<string> findSendToSapDataAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findSendToSapFailData", ReplyAction="http://tempuri.org/Iapitest/findSendToSapFailDataResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string findSendToSapFailData(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findSendToSapFailData", ReplyAction="http://tempuri.org/Iapitest/findSendToSapFailDataResponse")]
        System.Threading.Tasks.Task<string> findSendToSapFailDataAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getDevicePosition", ReplyAction="http://tempuri.org/Iapitest/getDevicePositionResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        IWareCC.wmsService.ArrayOfInt getDevicePosition(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getDevicePosition", ReplyAction="http://tempuri.org/Iapitest/getDevicePositionResponse")]
        System.Threading.Tasks.Task<IWareCC.wmsService.ArrayOfInt> getDevicePositionAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findMaterial", ReplyAction="http://tempuri.org/Iapitest/findMaterialResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string findMaterial(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/findMaterial", ReplyAction="http://tempuri.org/Iapitest/findMaterialResponse")]
        System.Threading.Tasks.Task<string> findMaterialAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/MaterialOperation", ReplyAction="http://tempuri.org/Iapitest/MaterialOperationResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string MaterialOperation(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/MaterialOperation", ReplyAction="http://tempuri.org/Iapitest/MaterialOperationResponse")]
        System.Threading.Tasks.Task<string> MaterialOperationAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deviceAlarm", ReplyAction="http://tempuri.org/Iapitest/deviceAlarmResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string deviceAlarm(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deviceAlarm", ReplyAction="http://tempuri.org/Iapitest/deviceAlarmResponse")]
        System.Threading.Tasks.Task<string> deviceAlarmAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deleteTask", ReplyAction="http://tempuri.org/Iapitest/deleteTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string deleteTask(string containerCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deleteTask", ReplyAction="http://tempuri.org/Iapitest/deleteTaskResponse")]
        System.Threading.Tasks.Task<string> deleteTaskAsync(string containerCode);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/handfindProductStock", ReplyAction="http://tempuri.org/Iapitest/handfindProductStockResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string handfindProductStock(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/handfindProductStock", ReplyAction="http://tempuri.org/Iapitest/handfindProductStockResponse")]
        System.Threading.Tasks.Task<string> handfindProductStockAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getPositionTotal", ReplyAction="http://tempuri.org/Iapitest/getPositionTotalResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string getPositionTotal(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/getPositionTotal", ReplyAction="http://tempuri.org/Iapitest/getPositionTotalResponse")]
        System.Threading.Tasks.Task<string> getPositionTotalAsync(string pages);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/emtypContainerOUtandIN", ReplyAction="http://tempuri.org/Iapitest/emtypContainerOUtandINResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string emtypContainerOUtandIN(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/emtypContainerOUtandIN", ReplyAction="http://tempuri.org/Iapitest/emtypContainerOUtandINResponse")]
        System.Threading.Tasks.Task<string> emtypContainerOUtandINAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deviceAlarms", ReplyAction="http://tempuri.org/Iapitest/deviceAlarmsResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string deviceAlarms(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/deviceAlarms", ReplyAction="http://tempuri.org/Iapitest/deviceAlarmsResponse")]
        System.Threading.Tasks.Task<string> deviceAlarmsAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/QueryPageFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/QueryPageFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string QueryPageFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/QueryPageFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/QueryPageFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> QueryPageFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/AddFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/AddFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string AddFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/AddFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/AddFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> AddFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/UpdateFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/UpdateFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string UpdateFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/UpdateFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/UpdateFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> UpdateFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/ExcuteFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/ExcuteFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string ExcuteFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/ExcuteFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/ExcuteFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> ExcuteFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/CancelFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/CancelFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string CancelFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/CancelFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/CancelFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> CancelFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/PersonStopFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/PersonStopFreeTimeMoveLocationTaskResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string PersonStopFreeTimeMoveLocationTask(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/PersonStopFreeTimeMoveLocationTask", ReplyAction="http://tempuri.org/Iapitest/PersonStopFreeTimeMoveLocationTaskResponse")]
        System.Threading.Tasks.Task<string> PersonStopFreeTimeMoveLocationTaskAsync(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/QueryButtonAuth", ReplyAction="http://tempuri.org/Iapitest/QueryButtonAuthResponse")]
        [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)]
        string QueryButtonAuth(string param);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iapitest/QueryButtonAuth", ReplyAction="http://tempuri.org/Iapitest/QueryButtonAuthResponse")]
        System.Threading.Tasks.Task<string> QueryButtonAuthAsync(string param);
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public interface IapitestChannel : IWareCC.wmsService.Iapitest, System.ServiceModel.IClientChannel {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public partial class IapitestClient : System.ServiceModel.ClientBase<IWareCC.wmsService.Iapitest>, IWareCC.wmsService.Iapitest {
        
        public IapitestClient() {
        }
        
        public IapitestClient(string endpointConfigurationName) : 
                base(endpointConfigurationName) {
        }
        
        public IapitestClient(string endpointConfigurationName, string remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public IapitestClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public IapitestClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding, remoteAddress) {
        }
        
        public void callContainer(int containerTypeId) {
            base.Channel.callContainer(containerTypeId);
        }
        
        public System.Threading.Tasks.Task callContainerAsync(int containerTypeId) {
            return base.Channel.callContainerAsync(containerTypeId);
        }
        
        public string sortingConfirm(string PlateCode, string Products, string percentage) {
            return base.Channel.sortingConfirm(PlateCode, Products, percentage);
        }
        
        public System.Threading.Tasks.Task<string> sortingConfirmAsync(string PlateCode, string Products, string percentage) {
            return base.Channel.sortingConfirmAsync(PlateCode, Products, percentage);
        }
        
        public void madeDish(string containerCode) {
            base.Channel.madeDish(containerCode);
        }
        
        public System.Threading.Tasks.Task madeDishAsync(string containerCode) {
            return base.Channel.madeDishAsync(containerCode);
        }
        
        public bool subtractQty(string subInfo) {
            return base.Channel.subtractQty(subInfo);
        }
        
        public System.Threading.Tasks.Task<bool> subtractQtyAsync(string subInfo) {
            return base.Channel.subtractQtyAsync(subInfo);
        }
        
        public string getToPlace(int taskId, int continerType, int height, int wmsTaskId) {
            return base.Channel.getToPlace(taskId, continerType, height, wmsTaskId);
        }
        
        public System.Threading.Tasks.Task<string> getToPlaceAsync(int taskId, int continerType, int height, int wmsTaskId) {
            return base.Channel.getToPlaceAsync(taskId, continerType, height, wmsTaskId);
        }
        
        public string receiptConfirm(string receipt) {
            return base.Channel.receiptConfirm(receipt);
        }
        
        public System.Threading.Tasks.Task<string> receiptConfirmAsync(string receipt) {
            return base.Channel.receiptConfirmAsync(receipt);
        }
        
        public string getPoList(string PoCode) {
            return base.Channel.getPoList(PoCode);
        }
        
        public System.Threading.Tasks.Task<string> getPoListAsync(string PoCode) {
            return base.Channel.getPoListAsync(PoCode);
        }
        
        public string StockOutConfirm(string outList) {
            return base.Channel.StockOutConfirm(outList);
        }
        
        public System.Threading.Tasks.Task<string> StockOutConfirmAsync(string outList) {
            return base.Channel.StockOutConfirmAsync(outList);
        }
        
        public string takeStock(string takes) {
            return base.Channel.takeStock(takes);
        }
        
        public System.Threading.Tasks.Task<string> takeStockAsync(string takes) {
            return base.Channel.takeStockAsync(takes);
        }
        
        public string reverser(string res) {
            return base.Channel.reverser(res);
        }
        
        public System.Threading.Tasks.Task<string> reverserAsync(string res) {
            return base.Channel.reverserAsync(res);
        }
        
        public string getDeviceInfo(string startTime, string endTime) {
            return base.Channel.getDeviceInfo(startTime, endTime);
        }
        
        public System.Threading.Tasks.Task<string> getDeviceInfoAsync(string startTime, string endTime) {
            return base.Channel.getDeviceInfoAsync(startTime, endTime);
        }
        
        public string outStockTaskList(string takes) {
            return base.Channel.outStockTaskList(takes);
        }
        
        public System.Threading.Tasks.Task<string> outStockTaskListAsync(string takes) {
            return base.Channel.outStockTaskListAsync(takes);
        }
        
        public string inStockTask(string takes) {
            return base.Channel.inStockTask(takes);
        }
        
        public System.Threading.Tasks.Task<string> inStockTaskAsync(string takes) {
            return base.Channel.inStockTaskAsync(takes);
        }
        
        public string unlock(int isremove, string positionName, string username) {
            return base.Channel.unlock(isremove, positionName, username);
        }
        
        public System.Threading.Tasks.Task<string> unlockAsync(int isremove, string positionName, string username) {
            return base.Channel.unlockAsync(isremove, positionName, username);
        }
        
        public string resetChaiDieDevice(string deviceCode) {
            return base.Channel.resetChaiDieDevice(deviceCode);
        }
        
        public System.Threading.Tasks.Task<string> resetChaiDieDeviceAsync(string deviceCode) {
            return base.Channel.resetChaiDieDeviceAsync(deviceCode);
        }
        
        public string productStockInfo(string pages) {
            return base.Channel.productStockInfo(pages);
        }
        
        public System.Threading.Tasks.Task<string> productStockInfoAsync(string pages) {
            return base.Channel.productStockInfoAsync(pages);
        }
        
        public string DeleteProductStock(int deleteId, string userName) {
            return base.Channel.DeleteProductStock(deleteId, userName);
        }
        
        public System.Threading.Tasks.Task<string> DeleteProductStockAsync(int deleteId, string userName) {
            return base.Channel.DeleteProductStockAsync(deleteId, userName);
        }
        
        public string updateProductStock(string updateInfo) {
            return base.Channel.updateProductStock(updateInfo);
        }
        
        public System.Threading.Tasks.Task<string> updateProductStockAsync(string updateInfo) {
            return base.Channel.updateProductStockAsync(updateInfo);
        }
        
        public string moveStock(string positionName, string username) {
            return base.Channel.moveStock(positionName, username);
        }
        
        public System.Threading.Tasks.Task<string> moveStockAsync(string positionName, string username) {
            return base.Channel.moveStockAsync(positionName, username);
        }
        
        public string lackData(string orderCode) {
            return base.Channel.lackData(orderCode);
        }
        
        public System.Threading.Tasks.Task<string> lackDataAsync(string orderCode) {
            return base.Channel.lackDataAsync(orderCode);
        }
        
        public string outInTaskList(string pages) {
            return base.Channel.outInTaskList(pages);
        }
        
        public System.Threading.Tasks.Task<string> outInTaskListAsync(string pages) {
            return base.Channel.outInTaskListAsync(pages);
        }
        
        public string receiptConvert(string receipt) {
            return base.Channel.receiptConvert(receipt);
        }
        
        public System.Threading.Tasks.Task<string> receiptConvertAsync(string receipt) {
            return base.Channel.receiptConvertAsync(receipt);
        }
        
        public string findProductStock(string pages) {
            return base.Channel.findProductStock(pages);
        }
        
        public System.Threading.Tasks.Task<string> findProductStockAsync(string pages) {
            return base.Channel.findProductStockAsync(pages);
        }
        
        public string findOldLibraryEarlyWarning(string pages) {
            return base.Channel.findOldLibraryEarlyWarning(pages);
        }
        
        public System.Threading.Tasks.Task<string> findOldLibraryEarlyWarningAsync(string pages) {
            return base.Channel.findOldLibraryEarlyWarningAsync(pages);
        }
        
        public string findSendToSapData(string pages) {
            return base.Channel.findSendToSapData(pages);
        }
        
        public System.Threading.Tasks.Task<string> findSendToSapDataAsync(string pages) {
            return base.Channel.findSendToSapDataAsync(pages);
        }
        
        public string findSendToSapFailData(string pages) {
            return base.Channel.findSendToSapFailData(pages);
        }
        
        public System.Threading.Tasks.Task<string> findSendToSapFailDataAsync(string pages) {
            return base.Channel.findSendToSapFailDataAsync(pages);
        }
        
        public IWareCC.wmsService.ArrayOfInt getDevicePosition(string param) {
            return base.Channel.getDevicePosition(param);
        }
        
        public System.Threading.Tasks.Task<IWareCC.wmsService.ArrayOfInt> getDevicePositionAsync(string param) {
            return base.Channel.getDevicePositionAsync(param);
        }
        
        public string findMaterial(string param) {
            return base.Channel.findMaterial(param);
        }
        
        public System.Threading.Tasks.Task<string> findMaterialAsync(string param) {
            return base.Channel.findMaterialAsync(param);
        }
        
        public string MaterialOperation(string param) {
            return base.Channel.MaterialOperation(param);
        }
        
        public System.Threading.Tasks.Task<string> MaterialOperationAsync(string param) {
            return base.Channel.MaterialOperationAsync(param);
        }
        
        public string deviceAlarm(string param) {
            return base.Channel.deviceAlarm(param);
        }
        
        public System.Threading.Tasks.Task<string> deviceAlarmAsync(string param) {
            return base.Channel.deviceAlarmAsync(param);
        }
        
        public string deleteTask(string containerCode) {
            return base.Channel.deleteTask(containerCode);
        }
        
        public System.Threading.Tasks.Task<string> deleteTaskAsync(string containerCode) {
            return base.Channel.deleteTaskAsync(containerCode);
        }
        
        public string handfindProductStock(string pages) {
            return base.Channel.handfindProductStock(pages);
        }
        
        public System.Threading.Tasks.Task<string> handfindProductStockAsync(string pages) {
            return base.Channel.handfindProductStockAsync(pages);
        }
        
        public string getPositionTotal(string pages) {
            return base.Channel.getPositionTotal(pages);
        }
        
        public System.Threading.Tasks.Task<string> getPositionTotalAsync(string pages) {
            return base.Channel.getPositionTotalAsync(pages);
        }
        
        public string emtypContainerOUtandIN(string param) {
            return base.Channel.emtypContainerOUtandIN(param);
        }
        
        public System.Threading.Tasks.Task<string> emtypContainerOUtandINAsync(string param) {
            return base.Channel.emtypContainerOUtandINAsync(param);
        }
        
        public string deviceAlarms(string param) {
            return base.Channel.deviceAlarms(param);
        }
        
        public System.Threading.Tasks.Task<string> deviceAlarmsAsync(string param) {
            return base.Channel.deviceAlarmsAsync(param);
        }
        
        public string QueryPageFreeTimeMoveLocationTask(string param) {
            return base.Channel.QueryPageFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> QueryPageFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.QueryPageFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string AddFreeTimeMoveLocationTask(string param) {
            return base.Channel.AddFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> AddFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.AddFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string UpdateFreeTimeMoveLocationTask(string param) {
            return base.Channel.UpdateFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> UpdateFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.UpdateFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string ExcuteFreeTimeMoveLocationTask(string param) {
            return base.Channel.ExcuteFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> ExcuteFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.ExcuteFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string CancelFreeTimeMoveLocationTask(string param) {
            return base.Channel.CancelFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> CancelFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.CancelFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string PersonStopFreeTimeMoveLocationTask(string param) {
            return base.Channel.PersonStopFreeTimeMoveLocationTask(param);
        }
        
        public System.Threading.Tasks.Task<string> PersonStopFreeTimeMoveLocationTaskAsync(string param) {
            return base.Channel.PersonStopFreeTimeMoveLocationTaskAsync(param);
        }
        
        public string QueryButtonAuth(string param) {
            return base.Channel.QueryButtonAuth(param);
        }
        
        public System.Threading.Tasks.Task<string> QueryButtonAuthAsync(string param) {
            return base.Channel.QueryButtonAuthAsync(param);
        }
    }
}