feat: 完善配置模块
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.Settings;
|
||||
|
||||
namespace Yi.Abp.Domain.Shared.Settings
|
||||
{
|
||||
internal class TestSettingProvider : SettingDefinitionProvider
|
||||
{
|
||||
public override void Define(ISettingDefinitionContext context)
|
||||
{
|
||||
context.Add(
|
||||
new SettingDefinition("DDD","127.0.0.1"),
|
||||
new SettingDefinition("TTT", "127.0.0.1")
|
||||
);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user