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);
}
}