bklLiudl
2024-07-23 6a22198db966e3e836e14a0d4187529fe05afbd9
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
using System;
 
namespace Model
{
    /// <summary>
    /// 设备信息实体类
    /// </summary>
    public class WCSPlcInfo
    {
 
        public string IP { get; set; }
        public string PlcStatusVal { get; set; }
        public int? Id { get; set; }
        public int? PlcIP { get; set; }
        public string LedIP { get; set; }
        public string DbNumber { get; set; }
        public string Level { get; set; }
        public string Type { get; set; }
        public string WareHouseNo { get; set; }
        public string StationNum { get; set; }
        public string PlcPos { get; set; }
        public string WcsPos { get; set; }
        public string PosType { get; set; }
        public string Text { get; set; }
        public string IsDel { get; set; }
        public DateTime CreateTime { get; set; }
        public int? CreateUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public int? UpdateUser { get; set; }
    }
 
    public class AjaxPlcInfoList
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public string StationNum { get; set; }
        public string Text { get; set; }
    }
 
    public class AjaxPlcOrWcs
    {
        public string Ip { get; set; }
        public string Stat { get; set; }
        public string Plcpos { get; set; }
    }
 
    public class AjasWCSPlcInfo
    {
        public int? Id { get; set; }
        public int? PlcIP { get; set; }
        public string LedIP { get; set; }
        public string DbNumber { get; set; }
        public string Level { get; set; }
        public string Type { get; set; }
        public string WareHouseNo { get; set; }
        public string StationNum { get; set; }
        public string PlcPos { get; set; }
        public string WcsPos { get; set; }
        public string PosType { get; set; }
        public string Text { get; set; }
        public string IsDel { get; set; }
        public DateTime CreateTime { get; set; }
        public int? CreateUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public int? UpdateUser { get; set; }
        public string Operation { get; set; }
 
    }
 
    public class WcsBoxInfo 
    {
        public int? Id { get; set; }
        public string OrderCode { get; set; }
        public string Line_No { get; set; }
        public string LineDao { get; set; }
        public string PORT { get; set; }
        public string BoxNo { get; set; }
        public string BoxNo2 { get; set; }
        public string BoxNo3 { get; set; }
        public string PalletNo { get; set; }
        public decimal? Qty { get; set; }
        public decimal? FullQty { get; set; }
        public string Aflag { get; set; }
        public string Status { get; set; }
        public string SkuNo { get; set; }
        public string SkuName { get; set; }
        public string LotNo { get; set; }
        public string LotText { get; set; }
        public string Custom { get; set; }
        public string CustomName { get; set; }
        public DateTime ProductionTime { get; set; }
        public DateTime ExpirationTime { get; set; }
        public DateTime CompleteTime { get; set; }
        public string InspectMark { get; set; }
        public string BitBoxMark { get; set; }
        public string Standard { get; set; }
        public string PackageStandard { get; set; }
        public DateTime StoreTime { get; set; }
        public int? QtyCount { get; set; }
        public int? QtyOrd { get; set; }
        public string Opuser { get; set; }
        public string IsDel { get; set; }
        public DateTime CreateTime { get; set; }
        public int? CreateUser { get; set; }
        public DateTime UpdateTime { get; set; }
        public int? UpdateUser { get; set; }
    }
}