From 2da6b14a2979c73f2efca596c897650d935ceaa9 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期日, 16 二月 2025 10:00:58 +0800
Subject: [PATCH] 导入项目bug修复

---
 Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs |   37 ++++++++++++++++++++++++-------------
 1 files changed, 24 insertions(+), 13 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs b/Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs
index f214d71..92132df 100644
--- a/Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs
+++ b/Service/HStation.Service.Assets.Core/01-entity/13-Package/AssetsPackageMain.cs
@@ -1,5 +1,4 @@
-锘縰sing System.ComponentModel.DataAnnotations;
-using Yw.Entity;
+锘縰sing Yw.Entity;
 
 namespace HStation.Entity
 {
@@ -8,7 +7,7 @@
     /// </summary>
     [SysType("assets_package_main")]
     [SugarTable("assets_package_main")]
-    public class AssetsPackageMain : BaseEntity, ISorter, System.ICloneable
+    public class AssetsPackageMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable
     {
         /// <summary>
         ///
@@ -25,9 +24,11 @@
             this.Name = rhs.Name;//
             this.SeriesID = rhs.SeriesID;
             this.CatalogID = rhs.CatalogID;
-            this.EquipmentCount = rhs.EquipmentCount;//pumpTotalnumber
-            this.UseCount = rhs.UseCount;//pumpusenumber
-            this.ModelType = rhs.ModelType;
+            this.PumpTotal = rhs.PumpTotal;
+            this.PumpUseCount = rhs.PumpUseCount;
+            this.Paras = rhs.Paras;
+            this.Flags = rhs.Flags;
+            this.TagName = rhs.TagName;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
@@ -54,19 +55,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 string Paras { get; set; }
+
+        /// <summary>
+        /// 鏍囩
+        /// </summary>
+        public string Flags { get; set; }
+
+        /// <summary>
+        /// 鏍囧織
+        /// </summary>
+        public string TagName { get; set; }
 
         /// <summary>
         /// 鎺掑簭鐮�

--
Gitblit v1.9.3