//------------------------------------------------------------------------------ // // 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 WFSchemeInfo : Entity { public WFSchemeInfo() { this.SchemeCode= string.Empty; this.SchemeName= string.Empty; this.SchemeType= string.Empty; this.SchemeVersion= string.Empty; this.SchemeCanUser= string.Empty; this.Description= string.Empty; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.ModifyDate= DateTime.Now; this.ModifyUserId= string.Empty; this.ModifyUserName= string.Empty; } /// /// 流程编号 /// public string SchemeCode { get; set; } /// /// 流程名称 /// public string SchemeName { get; set; } /// /// 流程分类 /// public string SchemeType { get; set; } /// /// 流程内容版本 /// public string SchemeVersion { get; set; } /// /// 流程模板使用者 /// public string SchemeCanUser { get; set; } /// /// 表单类型 /// public int? FrmType { get; set; } /// /// 模板权限类型0所有人,1指定成员 /// public int? AuthorizeType { get; set; } /// /// 排序码 /// public int? SortCode { get; set; } /// /// 删除标记 /// public int? DeleteMark { get; set; } /// /// 有效 /// public int? EnabledMark { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 创建时间 /// public System.DateTime? CreateDate { get; set; } /// /// 创建用户主键 /// public string CreateUserId { get; set; } /// /// 创建用户 /// public string CreateUserName { get; set; } /// /// 修改时间 /// public System.DateTime? ModifyDate { get; set; } /// /// 修改用户主键 /// public string ModifyUserId { get; set; } /// /// 修改用户 /// public string ModifyUserName { get; set; } } }