32 lines
755 B
C#
32 lines
755 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace YY.Admin.Core.Const
|
|||
|
|
{
|
|||
|
|
public class SqlSugarConst
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 默认主数据库标识(默认租户)
|
|||
|
|
/// </summary>
|
|||
|
|
public const string MainConfigId = "1300000000001";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 默认日志数据库标识
|
|||
|
|
/// </summary>
|
|||
|
|
public const string LogConfigId = "1300000000002";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 默认表主键
|
|||
|
|
/// </summary>
|
|||
|
|
public const string PrimaryKey = "Id";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 默认租户Id
|
|||
|
|
/// </summary>
|
|||
|
|
public const long DefaultTenantId = 1300000000001;
|
|||
|
|
}
|
|||
|
|
}
|