From ef0360bd1befc35cc5af197a92ce462bad3af50f Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周四, 18 9月 2025 18:30:01 +0800
Subject: [PATCH] 解决 时间格式不对的问题

---
 siemenswmssditcode/wmsService/wcftest/orm/deviceGeneralInfoForDetail.cs |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/siemenswmssditcode/wmsService/wcftest/orm/deviceGeneralInfoForDetail.cs b/siemenswmssditcode/wmsService/wcftest/orm/deviceGeneralInfoForDetail.cs
new file mode 100644
index 0000000..79e253a
--- /dev/null
+++ b/siemenswmssditcode/wmsService/wcftest/orm/deviceGeneralInfoForDetail.cs
@@ -0,0 +1,56 @@
+namespace wcftest.orm
+{
+    using System;
+    using System.Collections.Generic;
+    using System.ComponentModel.DataAnnotations;
+    using System.ComponentModel.DataAnnotations.Schema;
+    using System.Data.Entity.Spatial;
+    
+    /// <summary>
+    /// 更细致的设备状态监控表  【Editby shaocx,2025-09-18】
+    /// </summary>
+
+    [Table("deviceGeneralInfoForDetail")]
+    public partial class deviceGeneralInfoForDetail
+    {
+        public int id { get; set; }
+
+        public int? taskEnterCount { get; set; }
+
+        public int? taskOutCount { get; set; }
+
+        public int? stockProportion { get; set; }
+
+        public int? outDate { get; set; }
+
+        /// <summary>
+        /// 运行时间
+        /// </summary>
+        public decimal? deviceRunTime { get; set; }
+        /// <summary>
+        /// 等待时间
+        /// </summary>
+        public decimal? deviceWaitTime { get; set; }
+        /// <summary>
+        /// 报警时间
+        /// </summary>
+        public decimal? deviceAlarmTime { get; set; }
+
+        public DateTime? createTime { get; set; }
+
+        /// <summary>
+        /// 车号
+        /// </summary>
+        [StringLength(50)]
+        public string ext1 { get; set; }
+
+        [StringLength(50)]
+        public string ext2 { get; set; }
+
+        [StringLength(50)]
+        public string ext3 { get; set; }
+
+        [StringLength(50)]
+        public string ext4 { get; set; }
+    }
+}

--
Gitblit v1.9.3