using JNPF.Common.Models.WorkFlow;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowTask;
[SuppressSniffer]
public class FlowTaskCrInput : FlowTaskOtherModel
{
///
/// 引擎id.
///
public string? flowId { get; set; }
///
/// 主键id.
///
public string? id { get; set; }
///
/// 表单数据.
///
public object? formData { get; set; }
///
/// 提交/保存 0-1.
///
public int? status { get; set; }
///
/// 紧急程度.
///
public int? flowUrgent { get; set; } = 1;
}