From c77abe955836ca4d89e639d5ef509e1dedb08c55 Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Mon, 29 May 2023 17:52:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BD=A6=E9=98=9F=E6=A3=80?= =?UTF-8?q?=E7=B4=A2=EF=BC=8C=E5=A2=9E=E5=8A=A0=E9=BB=98=E8=AE=A4=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E8=BF=94=E5=9B=9E=E8=A1=8C=E6=95=B0=E4=B8=BA40?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Myshipping.Core/Service/DjyCustomer/DjyCustomerService.cs | 2 +- Myshipping.Core/Service/DjyCustomer/IDjyCustomerService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); } }