From 53ca1ab0c4a3d35fea83e4dd3dcde40e93428df5 Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期一, 11 十一月 2024 17:21:12 +0800
Subject: [PATCH] 细化资产表

---
 Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs |   22 ++++++++--------------
 1 files changed, 8 insertions(+), 14 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs
index 028bab4..05b5424 100644
--- a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs
+++ b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorSeries.cs
@@ -7,7 +7,7 @@
     /// </summary>
     [SysType("assets_compressor_series")]
     [SugarTable("assets_compressor_series")]
-    public class AssetsCompressorSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
+    public class AssetsCompressorSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable
     {
         /// <summary>
         ///
@@ -20,16 +20,20 @@
         /// </summary>
         public AssetsCompressorSeries(AssetsCompressorSeries rhs) : base(rhs)
         {
-            this.ID = rhs.ID;
+            this.ParentIds = rhs.ParentIds;
             this.Name = rhs.Name;
             this.Paras = rhs.Paras;
             this.Flags = rhs.Flags;
             this.TagName = rhs.TagName;
-            this.UseStatus = rhs.UseStatus;
-            this.Type = rhs.Type;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
+
+        /// <summary>
+        /// 鐖剁骇id鍒楄〃锛堢増鏈帶鍒讹級
+        /// </summary>
+        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
+        public string ParentIds { get; set; }
 
         /// <summary>
         /// 鍚嶇О
@@ -52,19 +56,9 @@
         public string TagName { get; set; }
 
         /// <summary>
-        /// 浣跨敤鐘舵��
-        /// </summary>
-        public int UseStatus { get; set; }
-
-        /// <summary>
         /// 鎺掑簭鐮�
         /// </summary>
         public int SortCode { get; set; }
-
-        /// <summary>
-        /// 绫诲瀷
-        /// </summary>
-        public string Type { get; set; }
 
         /// <summary>
         /// 璇存槑

--
Gitblit v1.9.3