完成流程实例列表/详情、流程模版添加

This commit is contained in:
yubaolee
2017-01-20 16:51:30 +08:00
parent 8a48855f04
commit b46729b31d
44 changed files with 3224 additions and 695 deletions

View File

@@ -21,7 +21,7 @@ namespace OpenAuth.Domain
public WFProcessScheme()
{
this.SchemeContent= string.Empty;
this.WFSchemeInfoId= string.Empty;
this.SchemeInfoId= Guid.Empty;
this.SchemeVersion= string.Empty;
this.ProcessType= 0;
}
@@ -33,7 +33,7 @@ namespace OpenAuth.Domain
/// <summary>
///
/// </summary>
public string WFSchemeInfoId { get; set; }
public Guid SchemeInfoId { get; set; }
/// <summary>
///
/// </summary>
@@ -43,5 +43,23 @@ namespace OpenAuth.Domain
/// </summary>
public int ProcessType { get; set; }
#region
/// <summary>
/// 新增调用
/// </summary>
public void Create()
{
this.Id = Guid.NewGuid();
}
/// <summary>
/// 编辑调用
/// </summary>
/// <param name="keyValue"></param>
public void Modify(Guid keyValue)
{
this.Id = keyValue;
}
#endregion
}
}