Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Model/Item/ConditionsItem.cs
2023-05-31 10:19:05 +08:00

63 lines
1.3 KiB
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.
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Model.Item;
[SuppressSniffer]
public class ConditionsItem
{
/// <summary>
/// 字段名称.
/// </summary>
public string? fieldName { get; set; }
/// <summary>
/// 比较名称.
/// </summary>
public string? symbolName { get; set; }
/// <summary>
/// 字段值.
/// </summary>
public dynamic fieldValue { get; set; }
/// <summary>
/// 逻辑名称.
/// </summary>
public string? logicName { get; set; }
/// <summary>
/// 字段.
/// </summary>
public string? field { get; set; }
/// <summary>
/// 逻辑符号.
/// </summary>
public string? logic { get; set; }
/// <summary>
/// 比较符号.
/// </summary>
public string? symbol { get; set; }
/// <summary>
/// 控件类型.
/// </summary>
public string? jnpfKey { get; set; }
/// <summary>
/// 控件类型.
/// </summary>
public string? fieldValueJnpfKey { get; set; }
/// <summary>
/// 条件类型 1字段 3:聚合函数匹配.
/// </summary>
public int? fieldType { get; set; } = 1;
/// <summary>
/// 1.字段 2.自定义.
/// </summary>
public int? fieldValueType { get; set; } = 2;
}