OpenAuth.Net/OpenAuth.Repository/Domain/FlowInstanceOperationHistory.cs

59 lines
1.8 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("FlowInstanceOperationHistory")]
2018-03-12 23:44:05 +08:00
public partial class FlowInstanceOperationHistory : Entity
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>
[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>
[Description("操作内容")]
2017-10-11 16:19:34 +08:00
public string Content { get; set; }
/// <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>
/// 创建用户主键
/// </summary>
[Description("创建用户主键")]
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
}