using GDZZ.Core; using SqlSugar; namespace GDZZ.FlowCenter.Entity; /// /// 流程 /// [SugarTable("flc_flowscheme")] public class FlcFlowscheme : FlcDEntityBase { /// /// 流程编号 /// 默认值: /// [SugarColumn(ColumnDescription = "流程编号",IsNullable = true)] public string SchemeCode { get; set; } /// /// 流程名称 /// 默认值: /// [SugarColumn(ColumnDescription = "流程名称", IsNullable = true)] public string SchemeName { get; set; } /// /// 流程类型 /// 默认值: /// [SugarColumn(ColumnDescription = "流程类型",IsNullable = true)] public string SchemeType { get; set; } /// /// 流程版本 /// 默认值: /// [SugarColumn(ColumnDescription = "流程版本",IsNullable = true)] public string SchemeVersion { get; set; } /// /// 流程使用人 /// 默认值: /// [SugarColumn(ColumnDescription = "流程使用人", IsNullable = true)] public string SchemeCanUser { get; set; } /// /// 流程内容 /// 默认值: /// [SugarColumn(ColumnDescription = "流程内容", ColumnDataType = "text", IsNullable = true)] public string SchemeContent { get; set; } /// /// 表单Id /// 默认值: /// [SugarColumn( ColumnDescription = "表单Id", IsNullable = true)] public long? FrmId { get; set; } /// /// 表单类型 /// 默认值: /// [SugarColumn(ColumnDescription = "表单类型")] public FormType? FrmType { get; set; } /// /// 权限类型 /// 默认值: /// [SugarColumn(ColumnDescription = "权限类型")] public int? AuthorizeType { get; set; } /// /// 组织Id /// 默认值: /// [SugarColumn( ColumnDescription = "组织Id",IsNullable = true)] public long? OrgId { get; set; } /// /// /// 默认值: /// [SugarColumn(ColumnDescription = "")] public string Active { get; set; } /// /// 状态 /// 默认值: /// [SugarColumn(ColumnDescription = "状态")] public CommonStatus? Status { get; set; } /// /// 排序 /// 默认值: /// [SugarColumn(ColumnDescription = "排序")] public int? Sort { get; set; } /// /// 备注 /// 默认值: /// [SugarColumn(ColumnDescription = "备注", IsNullable = true)] public string Remark { get; set; } }