//------------------------------------------------------------------------------
//
// 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.Domain
{
///
/// 工作流模板内容表
///
public partial class WFSchemeContent : Entity
{
public WFSchemeContent()
{
this.SchemeInfoId= string.Empty;
this.SchemeVersion= string.Empty;
this.SchemeContent= string.Empty;
this.CreateDate= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
}
///
/// 工作流模板信息主键Id
///
public string SchemeInfoId { get; set; }
///
/// 流程内容版本
///
public string SchemeVersion { get; set; }
///
/// 流程内容
///
public string SchemeContent { get; set; }
///
/// 创建时间
///
public System.DateTime? CreateDate { get; set; }
///
/// 创建用户主键
///
public string CreateUserId { get; set; }
///
/// 创建用户
///
public string CreateUserName { get; set; }
}
}