feat: 完善配置模块

This commit is contained in:
橙子
2024-06-27 22:39:09 +08:00
parent fcea4c63a7
commit 1843b9c44f
5 changed files with 35 additions and 7 deletions

View File

@@ -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")
);
}
}
}