using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Attributes { /// /// 指定接口增加操作日志 /// [AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)] public class ApiLogAttribute : Attribute { } }