From 1c30ee4068eb5dba3c6b9a4987b98034f2a622d0 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 13 一月 2025 10:49:47 +0800
Subject: [PATCH] 登录界面修改

---
 Service/PBS.Service.Core/01-entity/03-model-template/ModelTemplateGroup.cs |   60 ++++++++++++++++++++++++++++++------------------------------
 1 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/Service/PBS.Service.Core/01-entity/03-model-template/ModelTemplateGroup.cs b/Service/PBS.Service.Core/01-entity/03-model-template/ModelTemplateGroup.cs
index 391dd28..4514f8a 100644
--- a/Service/PBS.Service.Core/01-entity/03-model-template/ModelTemplateGroup.cs
+++ b/Service/PBS.Service.Core/01-entity/03-model-template/ModelTemplateGroup.cs
@@ -6,19 +6,19 @@
     /// 妯″瀷妯℃澘缁�
     ///</summary>
     [SysType("pbs-model-template-group")]
-    [SugarTable("pbs_model_template_group")] 
-    public class ModelTemplateGroup : BaseEntity , IParas, IFlags, ITagName, IUseStatus, ITreeSorter, System.ICloneable
+    [SugarTable("pbs_model_template_group")]
+    public class ModelTemplateGroup : BaseEntity, IParas, IFlags, ITagName, IUseStatus, ITreeSorter, System.ICloneable
     {
-         /// <summary>
-         ///
-         /// </summary>
-         public ModelTemplateGroup() { }
+        /// <summary>
+        ///
+        /// </summary>
+        public ModelTemplateGroup() { }
 
-         /// <summary>
-         ///
-         /// </summary>
-         public ModelTemplateGroup(ModelTemplateGroup rhs) : base(rhs)
-         {
+        /// <summary>
+        ///
+        /// </summary>
+        public ModelTemplateGroup(ModelTemplateGroup rhs) : base(rhs)
+        {
             this.ParentIds = rhs.ParentIds;
             this.Name = rhs.Name;
             this.Paras = rhs.Paras;
@@ -27,71 +27,71 @@
             this.UseStatus = rhs.UseStatus;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
-         }
+        }
 
         /// <summary>
         /// 鐖剁骇鏍囪瘑 
         ///</summary>
-        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]  
+        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
         public string ParentIds { get; set; }
-         
+
         /// <summary>
         /// 鍚嶇О 
         ///</summary>
-        [SugarColumn(Length = 50, IsNullable = true)]  
+        [SugarColumn(Length = 50, IsNullable = true)]
         public string Name { get; set; }
-         
+
         /// <summary>
         /// 鍙傛暟 
         ///</summary>
-        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]  
+        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
         public string Paras { get; set; }
-         
+
         /// <summary>
         /// 鏍囩 
         ///</summary>
-        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]  
+        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
         public string Flags { get; set; }
-         
+
         /// <summary>
         /// 鏍囧織 
         ///</summary>
-        [SugarColumn(Length = 500, IsNullable = true)]  
+        [SugarColumn(Length = 500, IsNullable = true)]
         public string TagName { get; set; }
-         
+
         /// <summary>
         /// 浣跨敤鐘舵�� 
         ///</summary>
         public int UseStatus { get; set; }
-         
+
         /// <summary>
         /// 鎺掑簭鐮� 
         ///</summary>
         public int SortCode { get; set; }
-         
+
         /// <summary>
         /// 璇存槑 
         ///</summary>
-        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]  
+        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
         public string Description { get; set; }
-         
+
 
         /// <summary>
         ///
         /// </summary>
         public ModelTemplateGroup Clone()
         {
-			return (ModelTemplateGroup)this.MemberwiseClone();
+            return (ModelTemplateGroup)this.MemberwiseClone();
         }
 
         object ICloneable.Clone()
         {
-			return this.MemberwiseClone();
+            return this.MemberwiseClone();
         }
 
     }
 }
 
- 
 
- 
+
+

--
Gitblit v1.9.3