山东雷驰
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
724 B

3 months ago
using System.Collections.Generic;
namespace Kean.Domain.Order.Models
{
/// <summary>
/// 工作流路径
/// </summary>
public class FlowPath
{
/// <summary>
/// 标识
/// </summary>
public int Id { get; set; }
/// <summary>
/// 源节点
/// </summary>
public int Source { get; set; }
/// <summary>
/// 目标节点
/// </summary>
public int Target { get; set; }
/// <summary>
/// 锚点
/// </summary>
public IEnumerable<string> Anchors { get; set; }
/// <summary>
/// 标签
/// </summary>
public string Label { get; set; }
}
}