第三方接口请求记录

This commit is contained in:
2024-07-11 15:20:45 +08:00
parent 614681284d
commit 22f255f85e
5 changed files with 235 additions and 0 deletions

View File

@@ -82,5 +82,12 @@ public class TestService : IDynamicApiController, ITransient
user.Account = "2312321";
}
[HttpGet]
[AllowAnonymous]
public string test1()
{
return "测试成功";
}
}