From 30d1c646b63604b59ce9d665054bd748e56e171c Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期三, 14 八月 2024 18:27:20 +0800
Subject: [PATCH] 新增水力模拟界面

---
 Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs |   19 +++++++++----------
 1 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs b/Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs
index 4fcf250..3c593aa 100644
--- a/Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs
@@ -1,10 +1,9 @@
-锘縰sing SqlSugar;
-using Yw.Model;
+锘縰sing Yw.Model;
 
 namespace HStation.Model
 {
     /// <summary>
-    /// 涓氬姟绔�
+    /// 娉电郴鍒�
     /// </summary>
     [SysType("xhs-pumpseries")]
     public class PumpSeries : BaseModel, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
@@ -15,10 +14,10 @@
         public PumpSeries(PumpSeries rhs) : base(rhs)
         {
             this.ID = rhs.ID;
-            this.CatalogID = rhs.CatalogID;
             this.Name = rhs.Name;
             this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
             this.Flags = rhs.Flags;
+            this.CatalogID = rhs.CatalogID;
             this.TagName = rhs.TagName;
             this.MotorFrequency = rhs.MotorFrequency;
             this.UseStatus = rhs.UseStatus;
@@ -29,8 +28,8 @@
         public void Reset(PumpSeries rhs)
         {
             this.ID = rhs.ID;
-            this.CatalogID = rhs.CatalogID;
             this.Name = rhs.Name;
+            this.CatalogID = rhs.CatalogID;
             this.MotorFrequency = rhs.MotorFrequency;
             this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
             this.Flags = rhs.Flags;
@@ -41,16 +40,16 @@
         }
 
         /// <summary>
-        /// 鎵�灞炵被鍒獻D
-        /// </summary>
-        public long CatalogID { get; set; }
-
-        /// <summary>
         /// 鍚嶇О
         /// </summary>
         public string Name { get; set; }
 
         /// <summary>
+        /// 鎵�灞炵被鍒獻D
+        /// </summary>
+        public long CatalogID { get; set; }
+
+        /// <summary>
         /// 鍙傛暟
         /// </summary>
         public Dictionary<string, string> Paras { get; set; }

--
Gitblit v1.9.3