From 37e94b8e1a8a3a30ac1f1711bb27bb97a5a296e8 Mon Sep 17 00:00:00 2001 From: wanggang <76527413@qq.com> Date: Wed, 19 Jul 2023 13:59:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DVmiService=E5=BC=95=E5=85=A5?= =?UTF-8?q?=E7=9A=84Swagger=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccount.Application/Entities/BQ/VmiService.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs index b56f27a2..1e5ac4e8 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiService.cs @@ -1,3 +1,4 @@ +using System; using System.Linq; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; @@ -22,21 +23,25 @@ public interface IVmiService : IApplicationService, ITransientDependency, IJobSe [Route("api/settleaccount/[controller]/[action]")] public class VmiService : IVmiService { + [NonAction] public void Invoke() { - throw new System.NotImplementedException(); + Console.WriteLine($"{nameof(VmiService)}:{DateTime.Now}"); } + [NonAction] public void In() { throw new System.NotImplementedException(); } + [NonAction] public void Out() { throw new System.NotImplementedException(); } + [HttpPost] public IQueryable Query() { throw new System.NotImplementedException();