//------------------------------------------------------------------------------
//
// 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.Collections.Generic;
using System.Text;
namespace OpenAuth.Repository.Domain
{
///
/// 工作流实例模板对应表,防止创建实例后原模板被改
///
public partial class FlowInstanceScheme : Entity
{
public FlowInstanceScheme()
{
this.SchemeContent= string.Empty;
this.SchemeId= string.Empty;
this.SchemeVersion= string.Empty;
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
}
///
/// 流程模板内容
///
public string SchemeContent { get; set; }
///
/// 流程模板ID
///
public string SchemeId { get; set; }
///
/// 流程内容版本
///
public string SchemeVersion { get; set; }
///
/// 创建时间
///
public System.DateTime CreateDate { get; set; }
///
/// 创建用户主键
///
public string CreateUserId { get; set; }
///
/// 创建用户
///
public string CreateUserName { get; set; }
}
}