修改了最大导出量为10000

This commit is contained in:
2025-06-05 16:18:10 +08:00
parent dc01bcfebf
commit 9406df1fe5
2 changed files with 4 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ namespace WMS.Web.Domain.Options
/// </summary>
public string Url { get; set; }
//导出数据一页条数
public int PageSize { get; set; } = 50000;
// public int PageSize { get; set; } = 50000;
public int PageSize { get; set; } = 10000;
}
}