去掉flowdetail

This commit is contained in:
yubaolee
2018-03-15 10:32:36 +08:00
parent 19f778acfa
commit e353c75fd7
16 changed files with 1077 additions and 1648 deletions

View File

@@ -25,6 +25,8 @@ namespace OpenAuth.Repository.Domain
this.SchemeType= string.Empty;
this.SchemeVersion= string.Empty;
this.SchemeCanUser= string.Empty;
this.SchemeContent= string.Empty;
this.FrmId= string.Empty;
this.FrmType= 0;
this.AuthorizeType= 0;
this.SortCode= 0;
@@ -59,12 +61,20 @@ namespace OpenAuth.Repository.Domain
/// 流程模板使用者
/// </summary>
public string SchemeCanUser { get; set; }
/// <summary>
/// 流程内容
/// </summary>
public string SchemeContent { get; set; }
/// <summary>
/// 表单ID
/// </summary>
public string FrmId { get; set; }
/// <summary>
/// 表单类型
/// </summary>
public int FrmType { get; set; }
/// <summary>
/// 模板权限类型0所有人,1指定成
/// 模板权限类型0完全公开,1指定部门/人
/// </summary>
public int AuthorizeType { get; set; }
/// <summary>