using JNPF.Common.Models.WorkFlow;
using JNPF.DependencyInjection;
namespace JNPF.Common.Dtos.VisualDev;
///
/// 在线功能开发数据创建输入.
///
[SuppressSniffer]
public class VisualDevModelDataCrInput : FlowTaskOtherModel
{
///
/// 数据.
///
/// modified by PhilPan 2023-04-12 返回值不序列化
public Dictionary data { get; set; }
///
/// 1-保存.
///
public int status { get; set; }
///
/// 紧急程度.
///
public int? flowUrgent { get; set; } = 1;
}