TransactionAttribute.cs 235 B

12345678910111213
  1. using System;
  2. namespace Admin.Core.Common
  3. {
  4. /// <summary>
  5. /// 启用事物
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Method, Inherited = true)]
  8. public class TransactionAttribute : Attribute
  9. {
  10. }
  11. }