DataSeeding.cs
6.75 KB
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
using HHECS.DAQClient.Common.Enums;
using HHECS.DAQClient.Model;
using HHECS.EquipmentModel;
namespace HHECS.DAQClient.DataAccess
{
/// <summary>
/// 种子数据
/// </summary>
public static class DataSeeding
{
public static List<CommunicationConfig> GetCommunicationConfigs()
{
var temps = new List<CommunicationConfig>
{
new CommunicationConfig
{
Id = 1,
Code = "PLC1",
Name = "西门子S1500",
CommunicationType = CommunicationTypeConst.Siemens_S1500,
IpAddress = "127.0.0.1",
Port = 102,
Disable = false,
},
};
return temps;
}
public static List<Equipment> GetEquipment()
{
var temps = new List<Equipment>();
return temps;
}
public static List<EquipmentProp> GetEquipmentProperties()
{
var temps = new List<EquipmentProp>();
return temps;
}
public static List<EquipmentType> GetEquipmentTypes()
{
var temps = new List<EquipmentType>
{
new EquipmentType
{
Id = 1,
Code = EquipmentTypeConst.SingleForkSRM.ToString(),
Name = "单叉堆垛机",
},
new EquipmentType
{
Id = 2,
Code = EquipmentTypeConst.DoubleForkSRM.ToString(),
Name = "双叉堆垛机",
},
new EquipmentType
{
Id = 3,
Code = EquipmentTypeConst.SingleForkSSRM.ToString(),
Name = "单叉高速堆垛机",
},
new EquipmentType
{
Id= 4,
Code = EquipmentTypeConst.SingleForkSSRMV132.ToString(),
Name = "单叉单任务堆垛机V132",
Description = "V132版单叉单任务,一般为高速堆垛机,不兼容转轨",
},
new EquipmentType
{
Id= 5,
Code = EquipmentTypeConst.StationMonitor.ToString(),
Name = "站台监控",
}
};
return temps;
}
/// <summary>
/// 获取设备属性模板
/// </summary>
/// <returns></returns>
public static List<EquipmentTypePropTemplate> GetEquipmentTypePropTemplates()
{
var temps = new List<EquipmentTypePropTemplate>();
var singleSRMPropTemplates = GetSingleSRMPropTemplates();
var doubleSRMPropTemplates = GetDoubleSRMPropTemplates();
temps.AddRange(singleSRMPropTemplates);
temps.AddRange(doubleSRMPropTemplates);
var index = 1;
temps.ForEach(x =>
{
x.Id = index++;
});
return temps;
}
/// <summary>
/// 单叉堆垛机属性模板
/// </summary>
/// <returns></returns>
private static List<EquipmentTypePropTemplate> GetSingleSRMPropTemplates()
{
var temps = new List<EquipmentTypePropTemplate>
{
new EquipmentTypePropTemplate
{
Code = SingleSRMPropConst.Code1.ToString(),
Name = "属性1",
Address = "DB100.0.0",
DataType = EquipmentDataType.WORD,
PropType = EquipmentPropType.PLCDataAddress,
MonitorCompareValue = string.Empty,
Description = string.Empty,
MonitorFailure = string.Empty,
MonitorNormal = string.Empty,
},
};
temps.ForEach(x =>
{
x.EquipmentTypeId = 1;
});
return temps;
}
/// <summary>
/// 双叉堆垛机属性模板
/// </summary>
/// <returns></returns>
private static List<EquipmentTypePropTemplate> GetDoubleSRMPropTemplates()
{
var temps = new List<EquipmentTypePropTemplate>
{
new EquipmentTypePropTemplate
{
Code = DoubleSRMPropConst.Code1.ToString(),
Name = "属性1",
Address = "DB100.0.0",
DataType = EquipmentDataType.WORD,
PropType = EquipmentPropType.PLCDataAddress,
MonitorCompareValue = string.Empty,
Description = string.Empty,
MonitorFailure = string.Empty,
MonitorNormal = string.Empty,
},
};
temps.ForEach(x =>
{
x.EquipmentTypeId = 2;
});
return temps;
}
private static List<Equipment> GetStationMonitorEquipment(IEnumerable<string> stationCode, string ip, int db = 3002, int start = 0, string destinationArea = null)
{
var temps = new List<Equipment>();
foreach (var station in stationCode)
{
var equipmentTypeId = 6;
var equipment = new Equipment
{
Code = station,
Name = "站台监控",
EquipmentTypeId = equipmentTypeId,
IP = ip,
Created = DateTime.Now,
DestinationArea = destinationArea,
Description = station
};
var props = new List<EquipmentProp>
{
new EquipmentProp
{
EquipmentTypePropTemplateCode = "StationMonitorBarcode",
Address = "DB3002.0,20",
Remark = "站台监控-条码",
Created = DateTime.Now,
ServerHandle = 0
},
new EquipmentProp
{
},
new EquipmentProp
{
},
new EquipmentProp
{
},
new EquipmentProp
{
},
new EquipmentProp
{
},
};
equipment.EquipmentProps = props;
temps.Add(equipment);
}
return temps;
}
}
}