From f9d7dda81bbf85f32f07c2f301b00ebc2b952983 Mon Sep 17 00:00:00 2001
From: qwj <qwjzorro@163.com>
Date: 星期三, 16 八月 2023 11:30:10 +0800
Subject: [PATCH] FileServer发布环境修改

---
 DocumentServiceAPI.Utility/PageBaseSearch.cs |   33 +++++++++++++++++++++++++--------
 1 files changed, 25 insertions(+), 8 deletions(-)

diff --git a/DocumentServiceAPI.Utility/PageBaseSearch.cs b/DocumentServiceAPI.Utility/PageBaseSearch.cs
index 6411526..598b1dd 100644
--- a/DocumentServiceAPI.Utility/PageBaseSearch.cs
+++ b/DocumentServiceAPI.Utility/PageBaseSearch.cs
@@ -1,15 +1,9 @@
-锘縰sing System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DocumentServiceAPI.Utility
+锘縩amespace DocumentServiceAPI.Utility
 {
     /// <summary>
     /// 鍒嗛〉鏌ヨ鏉′欢鍩虹被
     /// </summary>
-    public abstract class PageBaseSearch
+    public abstract class PageBaseSearch: BaseSearch
     {
         /// <summary>
         /// 椤电爜
@@ -20,6 +14,25 @@
         /// 鍒嗛〉澶у皬
         /// </summary>
         public int PageSize { get; set; } = 20;
+        
+    }
+
+    public abstract class BaseSearch
+    {
+        /// <summary>
+        /// 鍏徃ID
+        /// </summary>
+        public string CompanyID { get; set; }
+
+        /// <summary>
+        /// 绉熸埛ID
+        /// </summary>
+        public string TenantID { get; set; }
+
+        /// <summary>
+        /// 鐢ㄦ埛ID
+        /// </summary>
+        public string UserID { get; set; }
 
         /// <summary>
         /// 寮�濮嬫棩鏈�
@@ -57,6 +70,10 @@
         /// 璁板綍闆嗗悎
         /// </summary>
         public List<T> Items { get; set; } = new();
+        /// <summary>
+        /// 鎬婚〉鏁�
+        /// </summary>
+        public int TotalPage { get; set; }
 
     }
 }

--
Gitblit v1.9.1