From a5c91970e4424faa5848d814d671a7534b900d69 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期二, 13 八月 2024 09:59:13 +0800
Subject: [PATCH] 新增Revit 水表与换热器

---
 Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs |   76 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs b/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs
new file mode 100644
index 0000000..c03b1e8
--- /dev/null
+++ b/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs
@@ -0,0 +1,76 @@
+锘縰sing Yw.Entity;
+
+namespace HStation.Entity
+
+{
+    /// <summary>
+    /// 涓氬姟绔�
+    /// </summary>
+    [SysType("xhs_pumpmap")]
+    [SugarTable("xhs_pumpmap")]
+    public class PumpGroupAndMainMap : BaseEntity, IParas, IFlags, ITagName, System.ICloneable
+    {
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap()
+        { }
+
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap(PumpGroupAndMainMap rhs) : base(rhs)
+        {
+            this.ID = rhs.ID;
+            this.PumpGroupID = rhs.PumpGroupID;
+            this.Paras = rhs.Paras;
+            this.Flags = rhs.Flags;
+            this.PumpMainID = rhs.PumpMainID;
+            this.TagName = rhs.TagName;
+            this.Description = rhs.Description;
+        }
+
+        /// <summary>
+        /// 娉电粍ID
+        /// </summary>
+        public long PumpGroupID { get; set; }
+
+        /// <summary>
+        /// 娉靛瀷鍙稩D
+        /// </summary>
+        public long PumpMainID { get; set; }
+
+        /// <summary>
+        /// 鍙傛暟
+        /// </summary>
+        public string Paras { get; set; }
+
+        /// <summary>
+        /// 鏍囩
+        /// </summary>
+        public string Flags { get; set; }
+
+        /// <summary>
+        /// 鏍囧織
+        /// </summary>
+        public string TagName { get; set; }
+
+        /// <summary>
+        /// 璇存槑
+        /// </summary>
+        public string Description { get; set; }
+
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap Clone()
+        {
+            return (PumpGroupAndMainMap)this.MemberwiseClone();
+        }
+
+        object ICloneable.Clone()
+        {
+            return this.MemberwiseClone();
+        }
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3