using FreeSql;
using System;
using System.Data;
using ZhonTai.Admin.Core.Consts;
namespace ZhonTai.Admin.Core.Attributes;
///
/// 启用事物
///
[AttributeUsage(AttributeTargets.Method, Inherited = true)]
public class TransactionAttribute : Attribute
{
///
/// 事务传播方式
///
public Propagation Propagation { get; set; } = Propagation.Required;
///
/// 事务隔离级别
///
public IsolationLevel IsolationLevel { get; set; }
///
/// 数据库键
///
public string DbKey { get; set; } = DbKeys.MasterDb;
}