|
@@ -0,0 +1,67 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace IMCS_CCS.Model.vo
|
|
|
+{
|
|
|
+ public class ResponseHeidhData
|
|
|
+ {
|
|
|
+ public int code
|
|
|
+ { get; set; }
|
|
|
+
|
|
|
+ public bool result
|
|
|
+ { get; set; } = true;
|
|
|
+
|
|
|
+ public string msg
|
|
|
+ { get; set; } = "调用成功";
|
|
|
+
|
|
|
+ public int statusCode { get; set; } = 200;
|
|
|
+
|
|
|
+ public DeviceInfoData deviceData
|
|
|
+ { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
+ public class DeviceInfoData
|
|
|
+ {
|
|
|
+ public string MainProg { get; set; }
|
|
|
+
|
|
|
+ public string CurProg
|
|
|
+ { get; set; }
|
|
|
+ public string Status
|
|
|
+ { get; set; }
|
|
|
+ public string Mode
|
|
|
+ { get; set; }
|
|
|
+ public string EMG
|
|
|
+ { get; set; }
|
|
|
+ public string ActFeed
|
|
|
+ { get; set; }
|
|
|
+ public string ActSpindle
|
|
|
+ { get; set; }
|
|
|
+ public string ServoLoadX
|
|
|
+ { get; set; }
|
|
|
+ public string ServoLoadY
|
|
|
+ { get; set; }
|
|
|
+ public string ServoLoadZ
|
|
|
+ { get; set; }
|
|
|
+ public string PowerOnTime
|
|
|
+ { get; set; }
|
|
|
+
|
|
|
+ public string AccumulateCuttingTime
|
|
|
+ { get; set; }
|
|
|
+ public string CuttingTimePerCycle
|
|
|
+ { get; set; }
|
|
|
+ public string WorkTime
|
|
|
+ { get; set; }
|
|
|
+ public string Part_Count
|
|
|
+ { get; set; }
|
|
|
+ public string IsAlarm
|
|
|
+ { get; set; }
|
|
|
+ public string ToolNo
|
|
|
+ { get; set; }
|
|
|
+ public string ToolLife
|
|
|
+ { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+}
|