using SqlSugar; using System; namespace Myshipping.FlowCenter.Entity; /// /// 工作流实例操作记录 /// [Tenant("1")] [SugarTable("flc_flowinstanceinfo")] public class FlcFlowInstanceOperationHistory : PrimaryKeyEntity { /// /// 实例进程Id /// [SugarColumn(IsNullable = false, ColumnName = "InstanceId",ColumnDataType = "text", ColumnDescription = "实例进程Id")] public long InstanceId { get; set; } /// /// 操作内容 /// [SugarColumn(IsNullable = true, ColumnName = "Content", ColumnDataType = "text", ColumnDescription = "操作内容")] public string Content { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = false,ColumnDescription = "类别名称")] public DateTime? CreatedTime { get; set; } /// /// 创建用户主键 /// [SugarColumn(IsNullable = true, ColumnName = "CreatedUserId", ColumnDescription = "创建用户主键")] public long CreatedUserId { get; set; } /// /// 创建用户 /// [SugarColumn(IsNullable = true, ColumnName = "CreatedUserName", ColumnDataType = "text", ColumnDescription = "创建用户")] public string CreatedUserName { get; set; } }