using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys.Entity; /// /// 流程表单. /// [SugarTable("FLOW_ENGINEFORM")] public class FlowFormEntity : CLDEntityBase { /// /// 编码. /// [SugarColumn(ColumnName = "F_ENCODE")] public string? EnCode { get; set; } /// /// 名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string? FullName { get; set; } /// /// 分类. /// [SugarColumn(ColumnName = "F_CATEGORY")] public string? Category { get; set; } /// /// Web地址. /// [SugarColumn(ColumnName = "F_URLADDRESS")] public string? UrlAddress { get; set; } /// /// APP地址. /// [SugarColumn(ColumnName = "F_APPURLADDRESS")] public string? AppUrlAddress { get; set; } /// /// 表单json. /// [SugarColumn(ColumnName = "F_PROPERTYJSON")] public string? PropertyJson { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string? Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 流程类型(0:发起流程,1:功能流程). /// [SugarColumn(ColumnName = "F_FLOWTYPE")] public int? FlowType { get; set; } /// /// 表单类型(1:系统表单 2:自定义表单). /// [SugarColumn(ColumnName = "F_FORMTYPE")] public int? FormType { get; set; } /// /// 关联表单. /// [SugarColumn(ColumnName = "F_TABLEJSON")] public string? TableJson { get; set; } /// /// 数据源id. /// [SugarColumn(ColumnName = "F_DBLINKID")] public string? DbLinkId { get; set; } /// /// 接口路径. /// [SugarColumn(ColumnName = "F_INTERFACEURL")] public string? InterfaceUrl { get; set; } /// /// 表单json草稿. /// [SugarColumn(ColumnName = "F_DRAFTJSON")] public string? DraftJson { get; set; } /// /// 流程id. /// [SugarColumn(ColumnName = "F_FLOWID")] public string? FlowId { get; set; } }