Valeo_Line_MES_backend/MDM/RIZOFlowAttribute.cs
2026-01-10 13:47:54 +08:00

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; }
}
}