zhuhao 2 năm trước cách đây
mục cha
commit
f6d0389151
1 tập tin đã thay đổi với 67 bổ sung0 xóa
  1. 67 0
      IMCS_CCS/Model/vo/ResponseHeidhData.cs

+ 67 - 0
IMCS_CCS/Model/vo/ResponseHeidhData.cs

@@ -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; }
+
+
+    }
+}