From 822b0e30d70d50c9cafa1e4cd76505e515507830 Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Wed, 15 May 2024 15:02:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E4=B8=8D=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E7=9A=84=E6=8E=A5=E5=8F=A3=20=E8=BF=90=E8=B8=AA=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EmbedTraceProductService.cs | 22 ------------------- .../Interface/IEmbedTraceProductService.cs | 6 ----- 2 files changed, 28 deletions(-) diff --git a/Myshipping.Application/Service/EmbedProjectGoodsStatus/EmbedTraceProductService.cs b/Myshipping.Application/Service/EmbedProjectGoodsStatus/EmbedTraceProductService.cs index 2f404668..7b7e45ea 100644 --- a/Myshipping.Application/Service/EmbedProjectGoodsStatus/EmbedTraceProductService.cs +++ b/Myshipping.Application/Service/EmbedProjectGoodsStatus/EmbedTraceProductService.cs @@ -204,28 +204,6 @@ namespace Myshipping.Application } #endregion - #region 获取单票运踪流程纵向详情 - /// - /// 获取单票运踪流程纵向详情 - /// - /// 查询单票运踪流程详情 - /// 返回回执 - [AllowAnonymous, HttpPost("/EmbedTraceProduct/GetTraceVerticalInfo"), ApiUser(ApiCode = "EmbedServiceTraceShow")] - public async Task GetTraceVerticalInfo(EmbedQueryTraceFlowDto model) - { - /* - 1、调取运踪接口。 embed_trace_flow_url - 2、根据返回结果组织暂时的JSON结果。 - 3、返回结果 - - */ - EmbedTraceFlowResultDto result = null; - - - return result; - } - #endregion - #region 查询运踪 /// /// 查询运踪 diff --git a/Myshipping.Application/Service/EmbedProjectGoodsStatus/Interface/IEmbedTraceProductService.cs b/Myshipping.Application/Service/EmbedProjectGoodsStatus/Interface/IEmbedTraceProductService.cs index f6ce40ee..349b43cd 100644 --- a/Myshipping.Application/Service/EmbedProjectGoodsStatus/Interface/IEmbedTraceProductService.cs +++ b/Myshipping.Application/Service/EmbedProjectGoodsStatus/Interface/IEmbedTraceProductService.cs @@ -18,11 +18,5 @@ namespace Myshipping.Application /// 返回回执 Task GetTraceFlowInfo(EmbedQueryTraceFlowDto model); - /// - /// 获取单票运踪流程纵向详情 - /// - /// 查询单票运踪流程详情 - /// 返回回执 - Task GetTraceVerticalInfo(EmbedQueryTraceFlowDto model); } }