From bc9e5c59961ce729e3c62d9cf26069da7dc7c39e Mon Sep 17 00:00:00 2001
From: qwj <qwjzorro@163.com>
Date: 星期五, 25 八月 2023 15:39:55 +0800
Subject: [PATCH] 业绩管理
---
DocumentServiceAPI.Utility/PageBaseSearch.cs | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/DocumentServiceAPI.Utility/PageBaseSearch.cs b/DocumentServiceAPI.Utility/PageBaseSearch.cs
index 00f85a9..031808b 100644
--- a/DocumentServiceAPI.Utility/PageBaseSearch.cs
+++ b/DocumentServiceAPI.Utility/PageBaseSearch.cs
@@ -19,20 +19,22 @@
public abstract class BaseSearch
{
+ public int ID { get; set; }
+
/// <summary>
/// 鍏徃ID
/// </summary>
- public string CompanyID { get; set; }
+ public int CompanyID { get; set; }
/// <summary>
/// 绉熸埛ID
/// </summary>
- public string TenantID { get; set; }
+ public int TenantID { get; set; }
/// <summary>
/// 鐢ㄦ埛ID
/// </summary>
- public string UserID { get; set; }
+ public int UserID { get; set; }
/// <summary>
/// 寮�濮嬫棩鏈�
@@ -70,6 +72,10 @@
/// 璁板綍闆嗗悎
/// </summary>
public List<T> Items { get; set; } = new();
+ /// <summary>
+ /// 鎬婚〉鏁�
+ /// </summary>
+ public int TotalPage { get; set; }
}
}
--
Gitblit v1.9.1