chore:banner添加种子数据
This commit is contained in:
18
Yi.Abp.Net8/src/Yi.Abp.Application/Services/TestService.cs
Normal file
18
Yi.Abp.Net8/src/Yi.Abp.Application/Services/TestService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Volo.Abp.Application.Services;
|
||||
using Volo.Abp.DependencyInjection;
|
||||
|
||||
namespace Yi.Abp.Application.Services
|
||||
{
|
||||
public class TestService : ApplicationService
|
||||
{
|
||||
/// <summary>
|
||||
/// 你好世界
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <returns></returns>
|
||||
public string GetHelloWorld(string? name)
|
||||
{
|
||||
return name ?? "HelloWord";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user