From 57c0156fe021f9c690993e91da5dd280187f4fad Mon Sep 17 00:00:00 2001
From: liaoxujun@qq.com <liaoxujun@qq.com>
Date: 星期二, 01 八月 2023 17:15:03 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService

---
 DocumentServiceAPI.Model/UserInfoModel/TenantInfo.cs |   78 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 78 insertions(+), 0 deletions(-)

diff --git a/DocumentServiceAPI.Model/UserInfoModel/TenantInfo.cs b/DocumentServiceAPI.Model/UserInfoModel/TenantInfo.cs
new file mode 100644
index 0000000..2773ab1
--- /dev/null
+++ b/DocumentServiceAPI.Model/UserInfoModel/TenantInfo.cs
@@ -0,0 +1,78 @@
+锘縰sing DocumentServiceAPI.Enum;
+using SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DocumentServiceAPI.Model.UserInfoModel
+{
+  
+    /// <summary>
+    /// 绉熸埛琛�
+    /// </summary>
+    [Display(Name = "绉熸埛琛� ")]
+    [SugarTable(TableName = "TenantInfo", TableDescription = "绉熸埛琛�")]
+    public class TenantInfo : BaseModel
+    {
+        /// <summary>
+        /// ID
+        /// </summary>
+        [Display(Name = "ID ")]
+        [SugarColumn(ColumnDescription = "ID ",IsPrimaryKey =true,IsIdentity =true)]
+        public int Id { get; set; }
+
+        /// <summary>
+        /// 绉熸埛鍚�
+        /// </summary>
+        [Display(Name = "绉熸埛鍚� ")]
+        [SugarColumn(ColumnDescription = "绉熸埛鍚� ",Length =20)]
+        public string ItCode { get; set; }
+
+        /// <summary>
+        /// 鍚嶇О
+        /// </summary>
+        [Display(Name = "鍚嶇О ")]
+        [SugarColumn(ColumnDescription = "鍚嶇О ", Length = 200)]
+        public string? Name { get; set; }
+
+        /// <summary>
+        /// 鎻忚堪
+        /// </summary>
+        [Display(Name = "鎻忚堪 ")]
+        [SugarColumn(ColumnDescription = "鎻忚堪 ")]
+        public string? Description { get; set; }
+        /// <summary>
+        /// 鏍囨敞
+        /// </summary>
+        [Display(Name = "鏍囨敞")]
+        [SugarColumn(ColumnDescription = "鏍囨敞")]
+        public string? ReMark { get; set; }
+        /// <summary>
+        /// 鏁版嵁搴撻摼鎺ュ瓧绗︿覆 澶囩敤
+        /// </summary>
+        [Display(Name = "鏁版嵁搴撻摼鎺ュ瓧绗︿覆")]
+        [SugarColumn(ColumnDescription = "鏁版嵁搴撻摼鎺ュ瓧绗︿覆")]
+        public string? ConnectionString { get; set; }
+
+        /// <summary>
+        /// 鏁版嵁搴撶被鍨� 澶囩敤
+        /// </summary>
+        [Display(Name = "鏁版嵁搴撶被鍨�")]
+        [SugarColumn(ColumnDescription = "鏁版嵁搴撶被鍨�")]
+        public string? DbType { get; set; }
+
+        /// <summary>
+        /// 瀵嗙爜
+        /// </summary>
+        [SugarColumn(Length =30)]
+        public string? PsW { get; set; }  
+
+    }
+
+
+
+
+}

--
Gitblit v1.9.1