using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MDM.Attribute { [AttributeUsage(AttributeTargets.Method, Inherited = false)] public class RIZOFlowAttribute : System.Attribute { /// /// 流程类型 /// public string FlowType { get; set; } /// /// 流程码 /// public string FlowCode { get; set; } } }