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/EmployeeAtTenant.cs |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/DocumentServiceAPI.Model/UserInfoModel/EmployeeAtTenant.cs b/DocumentServiceAPI.Model/UserInfoModel/EmployeeAtTenant.cs
new file mode 100644
index 0000000..69ac741
--- /dev/null
+++ b/DocumentServiceAPI.Model/UserInfoModel/EmployeeAtTenant.cs
@@ -0,0 +1,37 @@
+锘縰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>
+    public class EmployeeAtTenant:BaseModel
+    {
+        /// <summary>
+        /// ID
+        /// </summary>
+        [Display(Name = "ID ")]
+        [SugarColumn(ColumnDescription = "ID ",IsPrimaryKey =true,IsIdentity =true)]
+        public int ID { get; set; }
+        /// <summary>
+        /// 鍛樺伐ID
+        /// </summary>
+        [Display(Name = "鍛樺伐ID ")]
+        [SugarColumn(ColumnDescription = "鍛樺伐ID ")]
+        public int EmployeeID { get; set; }
+        /// <summary>
+        /// 绉熸埛ID
+        /// </summary>
+        [Display(Name = "绉熸埛ID ")]
+        [SugarColumn(ColumnDescription = "绉熸埛ID ")]
+        public int TenantID { get; set; }
+
+    }
+}

--
Gitblit v1.9.1