using GDZZ.Core;
using SqlSugar;
namespace GDZZ.FlowCenter.Entity;
///
/// 表单
///
[SugarTable("flc_form")]
public class FlcForm: FlcDEntityBase
{
///
/// 表单名称
/// 默认值:
///
[SugarColumn(ColumnDescription= "表单名称", IsNullable = true)]
public string Name { get; set; }
///
/// 表单类型
/// 默认值:
///
[SugarColumn(ColumnDescription = "表单类型", IsNullable = true)]
public FormType? FrmType { get; set; }
///
/// 自定义表单
/// 默认值:
///
[SugarColumn(ColumnDescription= "自定义表单", IsNullable = true)]
public string WebId { get; set; }
///
/// 字段数
/// 默认值:
///
[SugarColumn(ColumnDescription= "字段数",IsNullable = true)]
public int? Fields { get; set; }
///
/// 字段
/// 默认值:
///
[SugarColumn(ColumnDescription= "字段", ColumnDataType = "text", IsNullable = true)]
public string ContentData { get; set; }
///
/// 字段格式化
/// 默认值:
///
[SugarColumn(ColumnDescription= "字段格式化", ColumnDataType = "text", IsNullable = true)]
public string ContentParse { get; set; }
///
/// 表单内容
/// 默认值:
///
[SugarColumn(ColumnDescription= "表单内容", ColumnDataType = "text", IsNullable = true)]
public string Content { get; set; }
///
/// 数据库备用
/// 默认值:
///
[SugarColumn(ColumnDescription= "数据库备用",IsNullable = true)]
public string DbName { get; set; }
///
/// 组织id
/// 默认值:
///
[SugarColumn(ColumnDescription= "组织id", IsNullable = true)]
public long? OrgId { get; set; }
///
///
/// 默认值:
///
[SugarColumn(ColumnName="Active",ColumnDescription="",IsNullable = true)]
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; }
}