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