30 lines
881 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 WfCondition
{
/// <summary>
/// 字段名称
/// </summary>
public string fieldName { get; set; }
/// <summary>
/// 字段Id
/// </summary>
public string fieldId { get; set; }
/// <summary>
/// 比较类型1.等于2.不等于3.大于4.大于等于5.小于6.小于等于7.包含8.不包含9.包含于10.不包含于
/// </summary>
public int compareType { get; set; }
/// <summary>
/// 数据值
/// </summary>
public string value { get; set; }
}
}