合并实例与实例模板

This commit is contained in:
yubaolee
2018-03-16 17:33:54 +08:00
parent 9c31ab6661
commit 67dd39dbc7
13 changed files with 1032 additions and 1523 deletions

View File

@@ -26,7 +26,13 @@ namespace OpenAuth.Repository.Domain
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.FrmContentData= string.Empty;
this.FrmContentParse= string.Empty;
this.FrmId= string.Empty;
this.SchemeType= string.Empty;
this.Disabled= 0;
this.CreateDate= DateTime.Now;
@@ -66,10 +72,34 @@ namespace OpenAuth.Repository.Domain
/// 前一个ID
/// </summary>
public string PreviousId { get; set; }
/// <summary>
/// 流程模板内容
/// </summary>
public string SchemeContent { get; set; }
/// <summary>
/// 流程模板ID
/// </summary>
public string SchemeId { get; set; }
/// <summary>
/// 数据库名称
/// </summary>
public string DbName { get; set; }
/// <summary>
/// 表单类型
/// </summary>
public int FrmType { get; set; }
/// <summary>
/// 表单中的字段数据
/// </summary>
public string FrmContentData { get; set; }
/// <summary>
/// 表单内容
/// </summary>
public string FrmContentParse { get; set; }
/// <summary>
/// 表单ID
/// </summary>
public string FrmId { get; set; }
/// <summary>
/// 流程类型
/// </summary>