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
109
110
111
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Model.WcsModel
{
    public class WCSPlcPos
    {
        public int? Id { get; set; }
 
        public int? PlcInfoId { get; set; }
 
        public string StationNum { get; set; }
 
        public string PlcPos { get; set; }
 
        public string PosType { get; set; }
 
        public string LedIP { get; set; }
 
        public string Name { get; set; }
 
        public string IsDel { get; set; }
        public DateTime CreateTime { get; set; }
        public int? CreateUser { get; set; }
        public string CreateUserName { get; set; }
 
    }
 
    public class AjaxPlcPosList
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public string StationNum { get; set; }
        public string PlcPos { get; set; }
 
    }
 
    public class AjaxPlcPos : WCSPlcPos
    {
 
        public string list { get; set; }
        public string Operation { get; set; }
    }
 
    public class PosNameVal
    {
        public string PlcTaskNo { get; set; }
        public string PlcPalletNo { get; set; }
        public string TaskNo { get; set; }
        public string PalletNo { get; set; }
        public string StartLocatNo { get; set; }
        public string EndLocatNo { get; set; }
        public string StartRow { get; set; }
        public string StartColumn { get; set; }
        public string StartLayer { get; set; }
        public string EndRow { get; set; }
        public string EndColumn { get; set; }
        public string EndLayer { get; set; }
        public string PlcPos { get; set; }
        public string WcsPos { get; set; }
    }
 
    public enum PosName
    {
        PlcTaskNo,
        PlcPalletNo,
        TaskNo,
        PalletNo,
        StartLocatNo,
        EndLocatNo,
 
        StartRow,
        StartColumn,
        StartLayer,
        EndRow,
        EndColumn,
        EndLayer,
        
    }
 
    public class AjaxLedList 
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
        public string Ip { get; set; }
        public string Name { get; set; }
    }
 
    public class WCSLed 
    {
        public int? Id { get; set; }
        public string Ip { get; set; }
        public string Name { get; set; }
        public string IsDel { get; set; }
        public DateTime CreateTime { get; set; }
        public int? CreateUser { get; set; }
        public string CreateUserName { get; set; }
    }
 
    public class AjaxLeds : WCSLed
    {
 
        public List<string> IPList { get; set; }
        public string list { get; set; }
        public string Operation { get; set; }
    }
}