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.
21 lines
483 B
C#
21 lines
483 B
C#
namespace EntrustSettle.Model
|
|
{
|
|
public static class DBConst
|
|
{
|
|
/// <summary>
|
|
/// 主数据库标识
|
|
/// </summary>
|
|
public static string MainDbConfigId = "Main";
|
|
|
|
/// <summary>
|
|
/// 默认Log数据库标识
|
|
/// </summary>
|
|
public const string LogDbConfigId = "log";
|
|
|
|
/// <summary>
|
|
/// 大简云平台数据库标识
|
|
/// </summary>
|
|
public const string PingTai = "PingTai";
|
|
}
|
|
}
|