namespace Admin.NET.Core;
///
/// SqlSugar实体配置特性
///
[SuppressSniffer, AttributeUsage(AttributeTargets.Class)]
public class SqlSugarEntityAttribute : Attribute
{
///
/// 数据库上下文标识
///
public string DbConfigId { get; set; } = SqlSugarConst.ConfigId;
///
/// 实体顺序
///
public int Order { get; set; }
///
/// 默认配置
///
public SqlSugarEntityAttribute()
{
}
///
/// 配置实体排序
///
///
public SqlSugarEntityAttribute(int order)
{
Order = order;
}
///
/// 配置数据库标识和实体排序
///
///
///
public SqlSugarEntityAttribute(int order, string dbConfigId)
{
Order = order;
DbConfigId = dbConfigId;
}
}