namespace JNPF.Common.Models.WorkFlow { public class FlowJsonModel { /// /// id. /// public string? id { get; set; } /// /// 流程id. /// public string? templateId { get; set; } /// /// 可见范围. /// public int? visibleType { get; set; } /// /// 版本. /// public string? version { get; set; } /// /// 流程JOSN包. /// public string? flowTemplateJson { get; set; } /// /// 流程分类. /// public string? category { get; set; } /// /// 流程编号. /// public string? enCode { get; set; } /// /// 流程名称. /// public string? fullName { get; set; } /// /// 流程类型. /// public int? type { get; set; } /// /// 所属流程名称. /// public string? flowName { get; set; } } }