From 564d1fcca01d3c528e283c9feef3ea1a05140e17 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期日, 29 九月 2024 22:36:46 +0800 Subject: [PATCH] 优化API架构,修复GET需要全部参数赋值的问题 --- Tiger.Api/Controllers/Test/TestController.R.cs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Tiger.Api/Controllers/Test/TestController.R.cs b/Tiger.Api/Controllers/Test/TestController.R.cs index 462deb6..0b48c83 100644 --- a/Tiger.Api/Controllers/Test/TestController.R.cs +++ b/Tiger.Api/Controllers/Test/TestController.R.cs @@ -306,7 +306,7 @@ public partial class _TestController : ControllerBase { [HttpGet] - public async Task<IActionResult> DoSomething(int duration) + public async Task<IActionResult> DoSomething(int duration, string code) { Barcode b = new("asdasd"); var begin = DateTime.Now; -- Gitblit v1.9.3