using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowTask; [SuppressSniffer] public class FlowTaskInfoOutput { /// /// 引擎id. /// public string? flowId { get; set; } /// /// 紧急程度. /// public int? flowUrgent { get; set; } = 1; /// /// 表单数据. /// public string? data { get; set; } /// /// 主键id. /// public string? id { get; set; } }