diff --git a/Myshipping.Core/Service/DjyCustomer/DjyCustomerService.cs b/Myshipping.Core/Service/DjyCustomer/DjyCustomerService.cs
index 2d569830..07af8305 100644
--- a/Myshipping.Core/Service/DjyCustomer/DjyCustomerService.cs
+++ b/Myshipping.Core/Service/DjyCustomer/DjyCustomerService.cs
@@ -216,7 +216,7 @@ namespace Myshipping.Core.Service
/// 默认最大行数
/// 返回回执
[HttpGet("/DjyCustomer/QuerytDjyCustomerInfo")]
- public async Task> QuerytDjyCustomerInfo([FromQuery] string queryItem, [FromQuery] string[] queryType, [FromQuery] int top = 10)
+ public async Task> QuerytDjyCustomerInfo([FromQuery] string queryItem, [FromQuery] string[] queryType, [FromQuery] int top = 40)
{
List list = new List();
diff --git a/Myshipping.Core/Service/DjyCustomer/IDjyCustomerService.cs b/Myshipping.Core/Service/DjyCustomer/IDjyCustomerService.cs
index 6f455931..15cb8117 100644
--- a/Myshipping.Core/Service/DjyCustomer/IDjyCustomerService.cs
+++ b/Myshipping.Core/Service/DjyCustomer/IDjyCustomerService.cs
@@ -23,6 +23,6 @@ namespace Myshipping.Core.Service
/// 检索类型数组(可传多个) fleet-车队;customs_broker-报关行
/// 默认最大行数
/// 返回回执
- Task> QuerytDjyCustomerInfo(string queryItem, string[] queryType, int top = 10);
+ Task> QuerytDjyCustomerInfo(string queryItem, string[] queryType, int top = 40);
}
}