using JNPF.Common.Filter; using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowLaunch; [SuppressSniffer] public class FlowLaunchListQuery : PageInputBase { /// /// 所属分类. /// public string? flowCategory { get; set; } /// /// 所属流程. /// public string? templateId { get; set; } /// /// 所属名称. /// public string? flowId { get; set; } /// /// 开始时间. /// public long? startTime { get; set; } /// /// 结束时间. /// public long? endTime { get; set; } /// /// 流程状态. /// public int? status { get; set; } /// /// 紧急程度. /// public int? flowUrgent { get; set; } /// /// 是否委托发起. /// public string delegateType { get; set; } }