//------------------------------------------------------------------------------
//
// 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 System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
///
/// 工作流实例操作记录
///
[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;
}
///
/// 实例进程Id
///
[Description("实例进程Id")]
public string InstanceId { get; set; }
///
/// 操作内容
///
[Description("操作内容")]
public string Content { get; set; }
///
/// 创建时间
///
[Description("创建时间")]
public System.DateTime CreateDate { get; set; }
///
/// 创建用户主键
///
[Description("创建用户主键")]
public string CreateUserId { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
public string CreateUserName { get; set; }
}
}