mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-08 02:14:44 +08:00
拆分流程列表为我的列表、待处理、已处理;
调整模块菜单按模块标识映射; 优化API错误提示;
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -72,6 +72,10 @@ namespace OpenAuth.Repository.Mapping
|
||||
.HasColumnName("ParentId")
|
||||
.HasMaxLength(50)
|
||||
.IsOptional();
|
||||
Property(t => t.Code)
|
||||
.HasColumnName("Code")
|
||||
.HasMaxLength(50)
|
||||
.IsOptional();
|
||||
|
||||
// Relationships
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user