EquipmentInfoResponseV2Dto.cs 10.3 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 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
using HHECS.DAQShared.Common.Enums;

namespace HHECS.DAQServer.Dto.DigitalTwin
{
    public class EquipmentInfoResponseV2Dto
    {
        /// <summary>
        /// 项目编号
        /// </summary>
        public string ProjectCode { get; set; }

        /// <summary>
        /// 仓库编号
        /// </summary>
        public string FactoryCode { get; set; }

        /// <summary>
        /// 堆垛机设备
        /// </summary>
        public Dictionary<string, StackerDto> Stacker { get; set; } = new Dictionary<string, StackerDto>();

        /// <summary>
        /// RGV站台设备
        /// </summary>
        public Dictionary<string, RGVStationDto> RgvStations { get; set; } = new Dictionary<string, RGVStationDto>();

        /// <summary>
        /// 站台设备
        /// </summary>
        public Dictionary<string, StationDto> Stations { get; set; } = new Dictionary<string, StationDto>();

        /// <summary>
        /// AGV设备
        /// </summary>
        public Dictionary<string, AGVDto> Agv { get; set; } = new Dictionary<string, AGVDto>();

        /// <summary>
        /// 焊接机器人
        /// </summary>
        public Dictionary<string, WeldRobotDto> WeldRobots { get; set; } = new Dictionary<string, WeldRobotDto>();

        public Dictionary<string, HoistDto> Hoists { get; set; } = new Dictionary<string, HoistDto>();
    }

    /// <summary>
    /// 堆垛机
    /// </summary>
    public class StackerDto : EquipmentBaseDto
    {
        /// <summary>
        /// 堆垛机编号
        /// </summary>
        public string Number { get; set; }

        /// <summary>
        /// 操作模式
        /// </summary>
        public SRMOperationModel OperationModel { get; set; }

        /// <summary>
        /// 水平测距
        /// </summary>
        public int HorizontalDistance { get; set; }

        /// <summary>
        /// 起升测距
        /// </summary>
        public int VerticalDistance { get; set; }

        /// <summary>
        /// 行走最小列
        /// </summary>
        public int ManageSmallColumn { get; set; }

        /// <summary>
        /// 行走最大列
        /// </summary>
        public int ManageMaxColumn { get; set; }

        /// <summary>
        /// 堆垛机当前列
        /// </summary>
        public int CurrentColumn { get; set; }

        /// <summary>
        /// 货叉1伸叉测距
        /// </summary>
        public int Fork1Distance { get; set; }

        /// <summary>
        /// 货叉1列
        /// </summary>
        public int Fork1XPosition { get; set; }

        /// <summary>
        /// 货叉1层
        /// </summary>
        public int Fork1YPosition { get; set; }

        /// <summary>
        /// 货叉1排
        /// </summary>
        public int Fork1ZPosition { get; set; }

        /// <summary>
        /// 货叉1在中心
        /// </summary>
        public bool Fork1Center { get; set; }

        /// <summary>
        /// 货叉1有货
        /// </summary>
        public bool Fork1HasPallet { get; set; }

        /// <summary>
        /// 货叉1是否屏蔽
        /// </summary>
        public bool Fork1Block { get; set; }

        /// <summary>
        /// 货叉1任务状态
        /// </summary>
        public int Fork1TaskExcuteStatus { get; set; }

        /// <summary>
        /// 货叉1任务类型
        /// </summary>
        public int Fork1TaskType { get; set; }

        /// <summary>
        /// 货叉1取货列
        /// </summary>
        public int Fork1PickXPosition { get; set; }

        /// <summary>
        /// 货叉1取货层
        /// </summary>
        public int Fork1PickYPosition { get; set; }

        /// <summary>
        /// 货叉1取货排
        /// </summary>
        public int Fork1PickZPosition { get; set; }

        /// <summary>
        /// 货叉1放货列
        /// </summary>
        public int Fork1PutXPosition { get; set; }

        /// <summary>
        /// 货叉1放货层
        /// </summary>
        public int Fork1PutYPosition { get; set; }

        /// <summary>
        /// 货叉1放货排
        /// </summary>
        public int Fork1PutZPosition { get; set; }

        /// <summary>
        /// 货叉1任务号
        /// </summary>
        public int Fork1TaskNo { get; set; }

        /// <summary>
        /// 货叉1货物条码
        /// </summary>
        public string Fork1GoodsBarcode { get; set; }

        /// <summary>
        /// 货叉2伸叉测距
        /// </summary>
        public int Fork2Distance { get; set; }

        /// <summary>
        /// 货叉2列
        /// </summary>
        public int Fork2XPosition { get; set; }

        /// <summary>
        /// 货叉2层
        /// </summary>
        public int Fork2YPosition { get; set; }

        /// <summary>
        /// 货叉2排
        /// </summary>
        public int Fork2ZPosition { get; set; }

        /// <summary>
        /// 货叉2在中心
        /// </summary>
        public bool Fork2Center { get; set; }

        /// <summary>
        /// 货叉2有货
        /// </summary>
        public bool Fork2HasPallet { get; set; }

        /// <summary>
        /// 货叉2是否屏蔽
        /// </summary>
        public bool Fork2Block { get; set; }

        /// <summary>
        /// 货叉2任务状态
        /// </summary>
        public int Fork2TaskExcuteStatus { get; set; }

        /// <summary>
        /// 货叉2任务类型
        /// </summary>
        public int Fork2TaskType { get; set; }

        /// <summary>
        /// 货叉2取货列
        /// </summary>
        public int Fork2PickXPosition { get; set; }

        /// <summary>
        /// 货叉2取货层
        /// </summary>
        public int Fork2PickYPosition { get; set; }

        /// <summary>
        /// 货叉2取货排
        /// </summary>
        public int Fork2PickZPosition { get; set; }

        /// <summary>
        /// 货叉2放货列
        /// </summary>
        public int Fork2PutXPosition { get; set; }

        /// <summary>
        /// 货叉2放货层
        /// </summary>
        public int Fork2PutYPosition { get; set; }

        /// <summary>
        /// 货叉2放货排
        /// </summary>
        public int Fork2PutZPosition { get; set; }

        /// <summary>
        /// 货叉2任务号
        /// </summary>
        public int Fork2TaskNo { get; set; }

        /// <summary>
        /// 货叉2货物条码
        /// </summary>
        public string Fork2GoodsBarcode { get; set; }
    }

    /// <summary>
    /// RGV站台
    /// </summary>
    public class RGVStationDto : EquipmentBaseDto
    {
        /// <summary>
        /// 站台监控-RGV位置
        /// </summary>
        public int StationRGVPosition { get; set; }

        /// <summary>
        /// 站台监控-RGV位置最小值
        /// </summary>
        public int StationRGVSmall { get; set; }

        /// <summary>
        /// 站台监控-RGV位置最大值
        /// </summary>
        public int StationRGVMax { get; set; }

        /// <summary>
        /// 站台监控-RGV目标位置
        /// </summary>
        public int StationRGVDestination { get; set; }

        /// <summary>
        /// 站台监控-RGV实际位置
        /// </summary>
        public int StationRGVActualPositionID { get; set; }
    }

    /// <summary>
    /// 站台
    /// </summary>
    public class StationDto : EquipmentBaseDto
    {
        /// <summary>
        /// 站台监控-条码
        /// </summary>
        public string StationMonitorBarcode { get; set; }

        /// <summary>
        /// 站台监控-托盘占位
        /// </summary>
        public bool StationMonitorOccupied { get; set; }

        /// <summary>
        /// 站台监控-目的地
        /// </summary>
        public int StationDestination { get; set; }

        /// <summary>
        /// 站台监控-正转
        /// </summary>
        public bool StationCorotation { get; set; }

        /// <summary>
        /// 站台监控-反转
        /// </summary>
        public bool StationReverse { get; set; }
    }

    /// <summary>
    /// AGV
    /// </summary>
    public class AGVDto : EquipmentBaseDto
    {

    }

    /// <summary>
    /// 焊接机器人
    /// </summary>
    public class WeldRobotDto : EquipmentBaseDto
    {
        /// <summary>
        /// 焊接电压
        /// </summary>
        public double Weld_V { get; set; }

        /// <summary>
        /// 焊接电流
        /// </summary>
        public double Weld_I { get; set; }

        public double Weld_Speed { get; set; }

        /// <summary>
        /// 工作模式
        /// </summary>
        public string Work_Mode { get; set; }

        public int A1 { get; set; }
        public int A2 { get; set; }
        public int A3 { get; set; }
        public int A4 { get; set; }
        public int A5 { get; set; }
        public int A6 { get; set; }

        public int E1 { get; set; }
        public int E2 { get; set; }
        public int E3 { get; set; }
        public int E4 { get; set; }

        public bool BootFlag { get; set; }

        public bool WorkFlag { get; set; }

        public bool WeldFlag { get; set; }

        public bool WeldCompleteFlag { get; set; }

        public bool Weld_Gas { get; set; }

        public bool Weld_CleanGun { get; set; }

        public bool Alarm { get; set; }
    }

    /// <summary>
    /// 提升机
    /// </summary>
    public class HoistDto : EquipmentBaseDto
    {
        /// <summary>
        /// 提升机状态
        /// </summary>
        public int HoistStatus { get; set; }

        /// <summary>
        /// 提升机位置
        /// </summary>
        public int ActualPositionID { get; set; }
    }

    public class EquipmentBaseDto
    {
        /// <summary>
        /// 设备通用状态 <see cref="EquipmentStatus"/>
        /// </summary>
        public string Status { get; set; }

        /// <summary>
        /// 设备名称
        /// </summary>
        public string EquipmentName { get; set; }

        /// <summary>
        /// 设备类型
        /// </summary>
        public string EquipmentTypeCode { get; set; }

        /// <summary>
        /// 主报警
        /// </summary>
        public string MainAlarm { get; set; }

        /// <summary>
        /// 报警明细
        /// </summary>
        public List<string> DetailAlarms { get; set; } = new List<string>();

    }
}