山东雷驰
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.

47 lines
983 B

3 months ago
using System.Collections.Generic;
using System.Drawing;
namespace Kean.Domain.Order.Models
{
/// <summary>
/// 工作流节点
/// </summary>
public class FlowNode
{
/// <summary>
/// 标识
/// </summary>
public int Id { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Name { get; set; }
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 激活条件
/// </summary>
public string Enter { get; set; }
/// <summary>
/// 活动时间
/// </summary>
public int? Alive { get; set; }
/// <summary>
/// 详细内容
/// </summary>
public IDictionary<int, string[][]> Detail { get; set; }
/// <summary>
/// 设计参数
/// </summary>
public Point Design { get; set; }
}
}