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