fix: 合并修复构建错误

This commit is contained in:
chenchun
2024-09-04 16:35:21 +08:00
parent d9022a0383
commit e1ea210fe9

View File

@@ -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;
} }
} }
}