Files
iMES_Net/iMES.Core/WorkFlow/WorkFlowTableOptions.cs

26 lines
557 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq.Expressions;
using System.Text;
using iMES.Entity.DomainModels;
namespace iMES.Core.WorkFlow
{
public class WorkFlowTableOptions:Sys_WorkFlow
{
public List<FilterOptions> FilterList { get; set; }
}
public class FilterOptions : Sys_WorkFlowStep
{
public List<FieldFilter> FieldFilters { get; set; }
public object Expression { get; set; }
public string[] ParentIds { get; set; }
}
}