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.
42 lines
917 B
42 lines
917 B
namespace learun.workflow
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.22
|
|
/// 描 述:工作流流转字段条件
|
|
/// </summary>
|
|
public class NWFCondition
|
|
{
|
|
/// <summary>
|
|
/// 数据库主键
|
|
/// </summary>
|
|
public string dbId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 表格
|
|
/// </summary>
|
|
public string table { get; set; }
|
|
|
|
/// <summary>
|
|
/// 关联字段
|
|
/// </summary>
|
|
public string field1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 比较字段
|
|
/// </summary>
|
|
public string field2 { 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; }
|
|
}
|
|
}
|