35 lines
927 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Learun.Application.WorkFlow
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2017.04.17
/// 描 述:工作流线段
/// </summary>
public class WfLineInfo
{
/// <summary>
/// 线条Id
/// </summary>
public string id { get; set; }
/// <summary>
/// 线条名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 开始端节点ID
/// </summary>
public string from { get; set; }
/// <summary>
/// 结束端节点ID
/// </summary>
public string to { get; set; }
/// <summary>
/// 线段类型 1.是 2.否 3.超时 4.超时或是 5.超时或否 6.是否
/// </summary>
public int wftype { get; set; }
}
}