From 423b9511a9ce98fe36a235d5d2ab0d5a8e66238e Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期三, 11 十二月 2024 17:55:44 +0800
Subject: [PATCH] 报告图片导入

---
 Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageMain.cs |   42 ++++++++++++++++++++++++++++--------------
 1 files changed, 28 insertions(+), 14 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageMain.cs b/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageMain.cs
index dc95e1c..808a573 100644
--- a/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageMain.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageMain.cs
@@ -6,7 +6,7 @@
     /// 璁惧
     /// </summary>
     [SysType("assets_package_main")]
-    public class AssetsPackageMain : BaseModel, ISorter, System.ICloneable
+    public class AssetsPackageMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
     {
         /// <summary>
         ///
@@ -23,9 +23,11 @@
             this.Name = rhs.Name;
             this.SeriesID = rhs.SeriesID;
             this.CatalogID = rhs.CatalogID;
-            this.EquipmentCount = rhs.EquipmentCount;
-            this.UseCount = rhs.UseCount;
-            this.ModelType = rhs.ModelType;
+            this.PumpTotal = rhs.PumpTotal;
+            this.PumpUseCount = rhs.PumpUseCount;
+            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
+            this.Flags = rhs.Flags?.ToList();
+            this.TagName = rhs.TagName;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
@@ -36,9 +38,11 @@
             this.Name = rhs.Name;
             this.SeriesID = rhs.SeriesID;
             this.CatalogID = rhs.CatalogID;
-            this.EquipmentCount = rhs.EquipmentCount;
-            this.UseCount = rhs.UseCount;
-            this.ModelType = rhs.ModelType;
+            this.PumpTotal = rhs.PumpTotal;
+            this.PumpUseCount = rhs.PumpUseCount;
+            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
+            this.Flags = rhs.Flags?.ToList();
+            this.TagName = rhs.TagName;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
@@ -64,19 +68,29 @@
         public long CatalogID { get; set; }
 
         /// <summary>
-        /// 璁惧鍨嬪彿
-        /// </summary>
-        public string ModelType { get; set; }
-
-        /// <summary>
         /// 璁惧鏁伴噺
         /// </summary>
-        public int EquipmentCount { get; set; }
+        public int PumpTotal { get; set; }
 
         /// <summary>
         /// 浣跨敤鏁伴噺
         /// </summary>
-        public int UseCount { get; set; }
+        public int PumpUseCount { get; set; }
+
+        /// <summary>
+        /// 鍙傛暟
+        /// </summary>
+        public Dictionary<string, string> Paras { get; set; }
+
+        /// <summary>
+        /// 鏍囩
+        /// </summary>
+        public List<string> Flags { get; set; }
+
+        /// <summary>
+        /// 鏍囧織
+        /// </summary>
+        public string TagName { get; set; }
 
         /// <summary>
         /// 鎺掑簭鐮�

--
Gitblit v1.9.3