From 1dd158434a41627a6684cd630b2696fb83b1e3d6 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期四, 19 十二月 2024 13:23:04 +0800
Subject: [PATCH] 流量计整改

---
 Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs |   55 +++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 43 insertions(+), 12 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs
index 30c4031..894d816 100644
--- a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs
+++ b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs
@@ -7,13 +7,29 @@
     /// </summary>
     [SysType("assets_compressor_main")]
     [SugarTable("assets_compressor_main")]
-    public class AssetsCompressorMain : BaseEntity, ISorter, System.ICloneable
+    public class AssetsCompressorMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable
     {
         /// <summary>
         ///
         /// </summary>
         public AssetsCompressorMain()
         { }
+
+        public AssetsCompressorMain(AssetsCompressorMain rhs)
+        {
+            this.ID = rhs.ID;
+            this.Name = rhs.Name;
+            this.SeriesID = rhs.SeriesID;
+            this.Caliber = rhs.Caliber;
+            this.Material = rhs.Material;
+            this.MinorLoss = rhs.MinorLoss;
+            this.KeyWord = rhs.KeyWord;
+            this.Paras = rhs.Paras;
+            this.Flags = rhs.Flags;
+            this.TagName = rhs.TagName;
+            this.SortCode = rhs.SortCode;
+            this.Description = rhs.Description;
+        }
 
         /// <summary>
         /// 鍚嶇О
@@ -26,19 +42,19 @@
         public long SeriesID { get; set; }
 
         /// <summary>
+        /// 鍙e緞
+        /// </summary>
+        public double? Caliber { get; set; }
+
+        /// <summary>
         /// 鏉愭枡
         /// </summary>
-        public string MaterialName { get; set; }
+        public string Material { get; set; }
 
         /// <summary>
         /// 绯绘暟
         /// </summary>
-        public double? Coefficient { get; set; }
-
-        /// <summary>
-        /// 鎺掑簭鐮�
-        /// </summary>
-        public int SortCode { get; set; }
+        public double MinorLoss { get; set; }
 
         /// <summary>
         /// 璇嗗埆鍏抽敭瀛�
@@ -46,9 +62,24 @@
         public string KeyWord { get; set; }
 
         /// <summary>
-        /// 鏄惁榛樿
+        /// 鍙傛暟
         /// </summary>
-        public int IsDefault { get; set; }
+        public string Paras { get; set; }
+
+        /// <summary>
+        /// 鏍囩
+        /// </summary>
+        public string Flags { get; set; }
+
+        /// <summary>
+        /// 鏍囧織
+        /// </summary>
+        public string TagName { get; set; }
+
+        /// <summary>
+        /// 鎺掑簭鐮�
+        /// </summary>
+        public int SortCode { get; set; }
 
         /// <summary>
         /// 璇存槑
@@ -58,9 +89,9 @@
         /// <summary>
         ///
         /// </summary>
-        public AssetsPumpGroupAndMainMap Clone()
+        public AssetsPumpGroupAndMainMapping Clone()
         {
-            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
+            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
         }
 
         object ICloneable.Clone()

--
Gitblit v1.9.3