From 00501bf99a6eeb26b79bbe2c83de84edff7e8f65 Mon Sep 17 00:00:00 2001
From: liaoxujun@qq.com <liaoxujun@qq.com>
Date: 星期四, 07 九月 2023 15:29:37 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService

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

diff --git a/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs b/DocumentServiceAPI.Model/Permissions/TenantPermissions.cs
index bdb4a9c..9a5f9a7 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,54 @@
     /// <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; }
+        /// <summary>
+        /// 鏄惁鏈夋爣涔︾紪杈戞潈闄�
+        /// </summary>
+        public bool? HasDocumentPermission { get; set; } = false;
     }
 }

--
Gitblit v1.9.1