//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using SqlSugar; using System; namespace HT.Cloud.Domain.FlowManage { /// /// 工作流实例操作记录 /// [SugarTable("oms_flowinstanceinfo")] [TenantAttribute("0")] public class FlowInstanceOperationHistory { /// /// 主键Id /// /// [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true, ColumnDescription = "主键Id")] public string F_Id { get; set; } /// /// 实例进程Id /// [SugarColumn(IsNullable = false, ColumnName = "F_InstanceId", ColumnDataType = "nvarchar(50)", ColumnDescription = "实例进程Id")] public string F_InstanceId { get; set; } /// /// 操作内容 /// [SugarColumn(IsNullable = true, ColumnName = "F_Content", ColumnDataType = "nvarchar(200)", ColumnDescription = "操作内容")] public string F_Content { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = false, ColumnDescription = "类别名称")] public DateTime? F_CreatorTime { get; set; } /// /// 创建用户主键 /// [SugarColumn(IsNullable = true, ColumnName = "F_CreatorUserId", ColumnDataType = "nvarchar(50)", ColumnDescription = "创建用户主键")] public string F_CreatorUserId { get; set; } /// /// 创建用户 /// [SugarColumn(IsNullable = true, ColumnName = "F_CreatorUserName", ColumnDataType = "nvarchar(50)", ColumnDescription = "创建用户")] public string F_CreatorUserName { get; set; } /// /// 表单数据 /// [SugarColumn(IsNullable = true, ColumnName = "F_FrmData", ColumnDataType = "longtext", ColumnDescription = "表单数据")] public string F_FrmData { get; set; } } }