From da70ee8b828a2db0496aabc9fef9c20f7b7fee5c Mon Sep 17 00:00:00 2001
From: liaoxujun@qq.com <liaoxujun@qq.com>
Date: 星期一, 28 八月 2023 11:17:40 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService

---
 DocumentServiceAPI.Model/Permissions/TenantPermissions.cs |   46 +++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 45 insertions(+), 1 deletions(-)

diff --git a/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs b/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs
index bdb4a9c..d5b331b 100644
--- a/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs
+++ b/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs
@@ -1,6 +1,8 @@
 锘縰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;
@@ -10,8 +12,50 @@
     /// <summary>
     /// 绉熸埛鏉冮檺
     /// </summary>
-    public class TenantPermissions
+    public class TenantPermissions: 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 TenantId { get; set; }
+
+
+        /// <summary>
+        /// 鏈�澶т紒涓氫釜鏁�
+        /// </summary>
+        [Display(Name = "鏈�澶т紒涓氫釜鏁� ")]
+        [SugarColumn(ColumnDescription = "鏈�澶т紒涓氫釜鏁� ")]
+        public int UnitMaxCount { get; set; }
+
+        /// <summary>
+        /// 鏈�澶у憳宸ユ暟閲�
+        /// </summary>
+        [Display(Name = "鏈�澶у憳宸ユ暟閲� ")]
+        [SugarColumn(ColumnDescription = "鏈�澶у憳宸ユ暟閲� ")]
+        public int EmployeeMaxCount { get; set; }
+
+
+        /// <summary>
+        /// 鍒版湡鏃堕棿
+        /// </summary>
+        [Display(Name = "鍒版湡鏃堕棿 ")]
+        [SugarColumn(ColumnDescription = "鍒版湡鏃堕棿 ")]
+        public DateTime OverTime { get; set; }
+
+        /// <summary>
+        /// 鎻忚堪
+        /// </summary>
+        [Display(Name = "鎻忚堪 ")]
+        [SugarColumn(ColumnDescription = "鎻忚堪 ")]
+        public string? Description { get; set; }
     }
 }

--
Gitblit v1.9.1