//------------------------------------------------------------------------------
//
// 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_flowinstancehis")]
[TenantAttribute("0")]
public class FlowInstanceTransitionHistory
{
///
/// 主键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; }
///
/// 开始节点Id
///
[SugarColumn(IsNullable = true, ColumnName = "F_FromNodeId", ColumnDataType = "nvarchar(50)", ColumnDescription = "开始节点Id")]
public string F_FromNodeId { get; set; }
///
/// 开始节点类型
///
[SugarColumn(IsNullable = true, ColumnDescription = "开始节点类型")]
public int? F_FromNodeType { get; set; }
///
/// 开始节点名称
///
[SugarColumn(IsNullable = true, ColumnName = "F_FromNodeName", ColumnDataType = "nvarchar(200)", ColumnDescription = "开始节点名称")]
public string F_FromNodeName { get; set; }
///
/// 结束节点Id
///
[SugarColumn(IsNullable = true, ColumnName = "F_ToNodeId", ColumnDataType = "nvarchar(50)", ColumnDescription = "结束节点Id")]
public string F_ToNodeId { get; set; }
///
/// 结束节点类型
///
[SugarColumn(IsNullable = true, ColumnDescription = "结束节点类型")]
public int? F_ToNodeType { get; set; }
///
/// 结束节点名称
///
[SugarColumn(IsNullable = true, ColumnName = "F_ToNodeName", ColumnDataType = "nvarchar(200)", ColumnDescription = "结束节点名称")]
public string F_ToNodeName { get; set; }
///
/// 转化状态
///
[SugarColumn(IsNullable = false, ColumnDescription = "转化状态")]
public bool F_TransitionSate { get; set; }
///
/// 是否结束
///
[SugarColumn(IsNullable = false, ColumnDescription = "是否结束")]
public bool F_IsFinish { 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; }
}
}