You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
C#
13 lines
451 B
C#
using Volo.Abp.Data;
|
|
|
|
namespace NPin.Framework.SettingManagement.Domain;
|
|
|
|
/// <summary>
|
|
/// Abp设置管理器数据库参数
|
|
/// </summary>
|
|
public class AbpSettingManagementDbProperties
|
|
{
|
|
public static string DbTablePrefix { get; set; } = AbpCommonDbProperties.DbTablePrefix;
|
|
public static string? DbSchema { get; set; } = AbpCommonDbProperties.DbSchema;
|
|
public const string ConnectionStringName = "AbpSettingManagement";
|
|
} |