mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
同步openauth.Core:
采用代码生成器的表结构控制前端显示,删除以前按照dbset获取数据库结构 优化注释 升级EF及所有三方的版本
This commit is contained in:
@@ -127,12 +127,12 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// <param name="moduleCode">模块的Code,如Category</param>
|
||||
/// <returns></returns>
|
||||
[HttpGet]
|
||||
public Response<List<KeyDescription>> GetProperties(string moduleCode)
|
||||
public Response<List<BuilderTableColumn>> GetProperties(string moduleCode)
|
||||
{
|
||||
var result = new Response<List<KeyDescription>>();
|
||||
var result = new Response<List<BuilderTableColumn>>();
|
||||
try
|
||||
{
|
||||
result.Result = _authStrategyContext.GetProperties(moduleCode);
|
||||
result.Result = _authStrategyContext.GetTableColumns(moduleCode);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
Reference in New Issue
Block a user