mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-07 18:04:45 +08:00
fix #I85BNJ 打印模板左侧的拖动按钮优化
This commit is contained in:
@@ -24,7 +24,7 @@ namespace OpenAuth.Repository.Domain
|
||||
this.Name = "";
|
||||
this.CreateUser = "";
|
||||
this.SourceSql = "";
|
||||
this.CloumnView = "";
|
||||
this.ColumnView = "";
|
||||
this.PlanContent = "";
|
||||
this.InParamColumn = "";
|
||||
this.GroupBy = "";
|
||||
@@ -54,7 +54,7 @@ namespace OpenAuth.Repository.Domain
|
||||
///中文视图名;设计打印方案时,提供中文快捷按钮的视图来源
|
||||
/// </summary>
|
||||
[Description("中文视图名;设计打印方案时,提供中文快捷按钮的视图来源")]
|
||||
public string CloumnView { get; set; }
|
||||
public string ColumnView { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///入口参数字段;入库参数字段数组,通过,分隔
|
||||
|
||||
@@ -58,6 +58,18 @@ namespace OpenAuth.Repository.Test
|
||||
Console.WriteLine(JsonHelper.Instance.Serialize(query.ToList()));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestGetColumns()
|
||||
{
|
||||
var sugarClient = _autofacServiceProvider.GetService<ISqlSugarClient>();
|
||||
|
||||
var tables = sugarClient.DbMaintenance.GetTableInfoList();
|
||||
// Console.WriteLine(JsonHelper.Instance.Serialize(tables));
|
||||
|
||||
var query = sugarClient.DbMaintenance.GetColumnInfosByTableName("userv");
|
||||
Console.WriteLine(JsonHelper.Instance.Serialize(query));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestDynamic()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user