//------------------------------------------------------------------------------ // // 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 FlowInstance : Entity { public FlowInstance() { this.InstanceSchemeId= string.Empty; this.Code= string.Empty; this.CustomName= string.Empty; this.ActivityId= string.Empty; this.ActivityName= string.Empty; this.PreviousId= string.Empty; this.SchemeContent= string.Empty; this.SchemeId= string.Empty; this.DbName= string.Empty; this.FrmType= 0; this.FrmData = string.Empty; this.FrmContentData= string.Empty; this.FrmContentParse= string.Empty; this.FrmId= string.Empty; this.SchemeType= string.Empty; this.Disabled= 0; this.CreateDate= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.FlowLevel= 0; this.Description= string.Empty; this.IsFinish= 0; this.MakerList= string.Empty; } /// /// 流程实例模板Id /// public string InstanceSchemeId { get; set; } /// /// 实例编号 /// public string Code { get; set; } /// /// 自定义名称 /// public string CustomName { get; set; } /// /// 当前节点ID /// public string ActivityId { get; set; } /// /// 当前节点类型 -1无法运行,0会签开始,1会签结束,2一般节点,4流程运行结束 /// public int? ActivityType { get; set; } /// /// 当前节点名称 /// public string ActivityName { get; set; } /// /// 前一个ID /// public string PreviousId { get; set; } /// /// 流程模板内容 /// public string SchemeContent { get; set; } /// /// 流程模板ID /// public string SchemeId { get; set; } /// /// 数据库名称 /// public string DbName { get; set; } /// /// 表单类型 /// public int FrmType { get; set; } /// /// 表单中的字段数据 /// public string FrmContentData { get; set; } /// /// 表单内容 /// public string FrmContentParse { get; set; } /// /// 表单ID /// public string FrmId { get; set; } /// /// 流程类型 /// public string SchemeType { get; set; } /// /// 有效标志 /// public int Disabled { get; set; } /// /// 创建时间 /// public System.DateTime CreateDate { get; set; } /// /// 创建用户主键 /// public string CreateUserId { get; set; } /// /// 创建用户 /// public string CreateUserName { get; set; } /// /// 等级 /// public int FlowLevel { get; set; } /// /// 实例备注 /// public string Description { get; set; } /// /// 是否完成 0未完成,1完成并同意,2被召回,3完成但不同意, 4被驳回需要重新提交 /// public int IsFinish { get; set; } /// /// 执行人 /// public string MakerList { get; set; } public string FrmData { get; set; } } }