namespace JNPF.Common.Models.WorkFlow { public class FlowFormModel { /// /// 表单id. /// public string id { get; set; } /// /// 编码. /// public string? enCode { get; set; } /// /// 名称. /// public string? fullName { get; set; } /// /// 分类. /// public string? category { get; set; } /// /// Web地址. /// public string? urlAddress { get; set; } /// /// APP地址. /// public string? appUrlAddress { get; set; } /// /// 表单json. /// public string? propertyJson { get; set; } /// /// 描述. /// public string? description { get; set; } /// /// 排序码. /// public long? sortCode { get; set; } /// /// 流程类型(0:发起流程,1:功能流程). /// public int? flowType { get; set; } /// /// 表单类型(1:系统表单 2:自定义表单). /// public int? formType { get; set; } /// /// 关联表单. /// public string? tableJson { get; set; } /// /// 数据源id. /// public string? dbLinkId { get; set; } /// /// 接口路径. /// public string? interfaceUrl { get; set; } /// /// 表单json草稿. /// public string? draftJson { get; set; } /// /// 引擎id. /// public string? flowId { get; set; } } }