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