using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YY.Admin.Core { /// /// 表示查询操作的前台操作码 /// public class OperateCodeAttribute : Attribute { /// /// 初始化一个类型的新实例 /// public OperateCodeAttribute(string code) { Code = code; } /// /// 获取 属性名称 /// public string Code { get; private set; } } }