Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Dto/FlowTemplate/FlowTemplateListQuery.cs
2023-03-13 15:00:34 +08:00

28 lines
602 B
C#

using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
[SuppressSniffer]
public class FlowTemplateListQuery : PageInputBase
{
/// <summary>
/// 流程分类.
/// </summary>
public string? category { get; set; }
/// <summary>
/// 开始时间.
/// </summary>
public long? startTime { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
public long? endTime { get; set; }
/// <summary>
/// 0:发起流程 1:功能流程.
/// </summary>
public int? flowType { get; set; }
}