fix: 合并修复构建错误
This commit is contained in:
@@ -18,6 +18,7 @@ namespace Yi.Framework.Ddd.Application.Contracts
|
|||||||
/// 排序列名,字段名对应前端
|
/// 排序列名,字段名对应前端
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? OrderByColumn { get; set; }
|
public string? OrderByColumn { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否顺序,字段名对应前端
|
/// 是否顺序,字段名对应前端
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -27,7 +28,9 @@ namespace Yi.Framework.Ddd.Application.Contracts
|
|||||||
/// 是否顺序
|
/// 是否顺序
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool CanAsc => IsAsc?.ToLower() == "ascending" ? true : false;
|
public bool CanAsc => IsAsc?.ToLower() == "ascending" ? true : false;
|
||||||
|
|
||||||
private string _sorting;
|
private string _sorting;
|
||||||
|
|
||||||
//排序引用
|
//排序引用
|
||||||
public new string? Sorting
|
public new string? Sorting
|
||||||
{
|
{
|
||||||
@@ -45,3 +48,4 @@ namespace Yi.Framework.Ddd.Application.Contracts
|
|||||||
set => _sorting = value;
|
set => _sorting = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user