using Volo.Abp.Application.Services; namespace Yi.Abp.Application { public class TestService : ApplicationService { /// /// 你好世界 /// /// /// public string GetHelloWorld(string? name) { return name ?? "HelloWord"; } } }