1
This commit is contained in:
25
iMES.Core/WorkFlow/WorkFlowTableOptions.cs
Normal file
25
iMES.Core/WorkFlow/WorkFlowTableOptions.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user