mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
13 lines
379 B
C#
13 lines
379 B
C#
using Volo.Abp.Data;
|
|
|
|
namespace Yi.Framework.SettingManagement.Domain;
|
|
|
|
public static class AbpSettingManagementDbProperties
|
|
{
|
|
public static string DbTablePrefix { get; set; } = AbpCommonDbProperties.DbTablePrefix;
|
|
|
|
public static string DbSchema { get; set; } = AbpCommonDbProperties.DbSchema;
|
|
|
|
public const string ConnectionStringName = "AbpSettingManagement";
|
|
}
|