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;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Table("FlowInstanceOperationHistory")]
|
2021-03-13 16:21:56 +08:00
|
|
|
|
public partial class FlowInstanceOperationHistory : StringEntity
|
2017-10-11 16:19:34 +08:00
|
|
|
|
{
|
2018-03-12 23:44:05 +08:00
|
|
|
|
public FlowInstanceOperationHistory()
|
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.Content= string.Empty;
|
|
|
|
|
this.CreateDate= DateTime.Now;
|
|
|
|
|
this.CreateUserId= string.Empty;
|
|
|
|
|
this.CreateUserName= string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 实例进程Id
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("实例进程Id")]
|
2018-03-12 23:44:05 +08:00
|
|
|
|
public string InstanceId { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作内容
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("操作内容")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建时间")]
|
2018-03-12 23:44:05 +08:00
|
|
|
|
public System.DateTime CreateDate { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建用户主键
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建用户主键")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string CreateUserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建用户
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建用户")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string CreateUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
2017-01-12 19:24:52 +08:00
|
|
|
|
}
|