feat: 添加测试控制器

This commit is contained in:
陈淳
2023-12-14 14:15:56 +08:00
parent 6cc079aac7
commit ca9add7d93
4 changed files with 2281 additions and 921 deletions

View File

@@ -0,0 +1,17 @@
using Volo.Abp.Application.Services;
namespace Yi.Abp.Application
{
public class TestService : ApplicationService
{
/// <summary>
/// 你好世界
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public string GetHelloWorld(string? name)
{
return name ?? "HelloWord";
}
}
}