From bf08fea8397acdab1d940bd40fa40419f4b0f4ce Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Tue, 23 Jul 2024 09:28:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Z_Business/DataExchangeInterfaceConfigAppService.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application/Z_Business/DataExchangeInterfaceConfigAppService.cs b/InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application/Z_Business/DataExchangeInterfaceConfigAppService.cs index 459cb63f7..5e70e849a 100644 --- a/InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application/Z_Business/DataExchangeInterfaceConfigAppService.cs +++ b/InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application/Z_Business/DataExchangeInterfaceConfigAppService.cs @@ -2,6 +2,7 @@ using System; using System.Threading.Tasks; using Dy_Exchange.Permissions; using Dy_Exchange.Z_Business.Dtos; +using Microsoft.AspNetCore.Mvc; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using WinIn.FasterZ.Wms.AppBase; @@ -30,8 +31,12 @@ public class DataExchangeInterfaceConfigAppService : ZbxBase UpdateAsync(Guid id, CreateUpdateDataExchangeInterfaceConfigDto input) { - - return base.UpdateAsync(id, input); } + + [HttpPost("")] + public async Task CheckWmsStatus() + { + + } }