OpenAuth.Net/OpenAuth.Repository/Domain/FlowInstanceTransitionHistory.cs

99 lines
3.1 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +08:00
//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 工作流实例流转历史记录
/// </summary>
[Table("FlowInstanceTransitionHistory")]
2018-03-12 23:44:05 +08:00
public partial class FlowInstanceTransitionHistory : Entity
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
public FlowInstanceTransitionHistory()
2017-10-11 16:19:34 +08:00
{
2018-03-12 23:44:05 +08:00
this.InstanceId= string.Empty;
2017-10-11 16:19:34 +08:00
this.FromNodeId= string.Empty;
this.FromNodeName= string.Empty;
this.ToNodeId= string.Empty;
this.ToNodeName= string.Empty;
2018-03-12 23:44:05 +08:00
this.TransitionSate= 0;
this.IsFinish= 0;
2017-10-11 16:19:34 +08:00
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
}
/// <summary>
2018-03-12 23:44:05 +08:00
/// 实例Id
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("实例Id")]
2018-03-12 23:44:05 +08:00
public string InstanceId { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 开始节点Id
/// </summary>
[Description("开始节点Id")]
2017-10-11 16:19:34 +08:00
public string FromNodeId { get; set; }
/// <summary>
/// 开始节点类型
/// </summary>
[Description("开始节点类型")]
2017-10-11 16:19:34 +08:00
public int? FromNodeType { get; set; }
/// <summary>
/// 开始节点名称
/// </summary>
[Description("开始节点名称")]
2017-10-11 16:19:34 +08:00
public string FromNodeName { get; set; }
/// <summary>
/// 结束节点Id
/// </summary>
[Description("结束节点Id")]
2017-10-11 16:19:34 +08:00
public string ToNodeId { get; set; }
/// <summary>
/// 结束节点类型
/// </summary>
[Description("结束节点类型")]
2017-10-11 16:19:34 +08:00
public int? ToNodeType { get; set; }
/// <summary>
/// 结束节点名称
/// </summary>
[Description("结束节点名称")]
2017-10-11 16:19:34 +08:00
public string ToNodeName { get; set; }
/// <summary>
/// 转化状态
/// </summary>
[Description("转化状态")]
2018-03-12 23:44:05 +08:00
public int TransitionSate { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 是否结束
/// </summary>
[Description("是否结束")]
2018-03-12 23:44:05 +08:00
public int IsFinish { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 转化时间
/// </summary>
[Description("转化时间")]
2018-03-12 23:44:05 +08:00
public System.DateTime CreateDate { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 操作人Id
/// </summary>
[Description("操作人Id")]
2017-10-11 16:19:34 +08:00
public string CreateUserId { get; set; }
/// <summary>
/// 操作人名称
/// </summary>
[Description("操作人名称")]
2017-10-11 16:19:34 +08:00
public string CreateUserName { get; set; }
}
2017-01-12 19:24:52 +08:00
}