拆分流程列表为我的列表、待处理、已处理;

调整模块菜单按模块标识映射;
优化API错误提示;
This commit is contained in:
yubaolee
2018-04-04 17:36:41 +08:00
parent 7989b4e563
commit 238550f415
31 changed files with 1223 additions and 639 deletions

View File

@@ -27,6 +27,7 @@ namespace OpenAuth.Repository.Domain
this.Status= 0;
this.Vector= string.Empty;
this.SortNo= 0;
this.Code = string.Empty;
}
/// <summary>
@@ -63,5 +64,11 @@ namespace OpenAuth.Repository.Domain
/// </summary>
public int SortNo { get; set; }
/// <summary>
/// 模块标识
/// </summary>
/// <value>The code.</value>
public string Code { get; set; }
}
}