海波 张
2025-05-13 945a65e917ffd620fc51354245f0e5b31f7a03ab
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
using HH.WCS.ZhongCeJinTan.device;
using HH.WCS.ZhongCeJinTan.process;
using HH.WCS.ZhongCeJinTan.util;
using HH.WCS.ZhongCeJinTan.wms;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using static HH.WCS.ZhongCeJinTan.api.ApiModel;
 
namespace HH.WCS.ZhongCeJinTan.api
{
    /// <summary>
    /// api接口辅助类
    /// </summary>
    public class ApiHelper
    {
        static ApiHelper() {
 
        }
 
      
 
       
 
      
 
 
 
 
        public class AddTaskModel
        {
            public string From { get; set; }
            public string To { get; set; }
            public string No { get; set; }
        }
        public class LocationModel
        {
            public string location { get; set; }
        }
        public class DeviceModel
        {
            /// <summary>
            /// 瓶盖机名称
            /// </summary>
            public string deviceName { get; set; }
            /// <summary>
            /// 1 、2
            /// </summary>
            public int order { get; set; }
        }
        public class RowInfo
        {
            public string area { get; set; }
            public int row { get; set; }
        }
 
    }
}