修复生成业务代码异常

优化代码,删除columnHeaders
This commit is contained in:
yubaolee
2021-10-27 22:47:42 +08:00
parent 9fd0405721
commit 1c699eda26
9 changed files with 19 additions and 17 deletions

View File

@@ -38,12 +38,7 @@ namespace OpenAuth.App.Response
/// </summary>
public int count { get; set; }
/// <summary>
/// 返回的列表头信息已过时请使用columnFields代替
/// </summary>
[Obsolete("请使用ColumnFields以获得更丰富的配置信息")]
public List<KeyDescription> columnHeaders;
/// <summary>
/// 返回的表格列定义
/// 该属性基于代码生成使用的列定义
@@ -59,7 +54,6 @@ namespace OpenAuth.App.Response
{
code = 200;
msg = "加载成功";
columnHeaders = new List<KeyDescription>();
columnFields = new List<BuilderTableColumn>();
}
}