OpenAuth.Net/OpenAuth.Repository/Domain/FlowInstanceOperationHistory.cs
2024-12-23 20:10:01 +08:00

60 lines
1.8 KiB
C#

//------------------------------------------------------------------------------
// <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;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 工作流程操作历史
/// <para>记录某个流程实例所有的人员创建、审批记录</para>
/// </summary>
[Table("FlowInstanceOperationHistory")]
public partial class FlowInstanceOperationHistory : StringEntity
{
public FlowInstanceOperationHistory()
{
this.InstanceId = string.Empty;
this.Content = string.Empty;
this.CreateDate = DateTime.Now;
this.CreateUserId = string.Empty;
this.CreateUserName = string.Empty;
}
/// <summary>
/// 实例进程Id
/// </summary>
[Description("实例进程Id")]
public string InstanceId { get; set; }
/// <summary>
/// 操作内容
/// </summary>
[Description("操作内容")]
public string Content { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
public System.DateTime CreateDate { get; set; }
/// <summary>
/// 创建用户主键
/// </summary>
[Description("创建用户主键")]
public string CreateUserId { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
public string CreateUserName { get; set; }
}
}