24 lines
509 B
C#
24 lines
509 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 流程类型
|
|
/// </summary>
|
|
public string FlowType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流程码
|
|
/// </summary>
|
|
public string FlowCode { get; set; }
|
|
|
|
}
|
|
}
|