From e1ea210fe950bad92fc039f604861c6bfbcdaecb Mon Sep 17 00:00:00 2001 From: chenchun Date: Wed, 4 Sep 2024 16:35:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=90=88=E5=B9=B6=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PagedAllResultRequestDto.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application.Contracts/PagedAllResultRequestDto.cs b/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application.Contracts/PagedAllResultRequestDto.cs index 494caceb..c9757489 100644 --- a/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application.Contracts/PagedAllResultRequestDto.cs +++ b/Yi.Abp.Net8/framework/Yi.Framework.Ddd.Application.Contracts/PagedAllResultRequestDto.cs @@ -18,6 +18,7 @@ namespace Yi.Framework.Ddd.Application.Contracts /// 排序列名,字段名对应前端 /// public string? OrderByColumn { get; set; } + /// /// 是否顺序,字段名对应前端 /// @@ -27,7 +28,9 @@ namespace Yi.Framework.Ddd.Application.Contracts /// 是否顺序 /// public bool CanAsc => IsAsc?.ToLower() == "ascending" ? true : false; + private string _sorting; + //排序引用 public new string? Sorting { @@ -45,3 +48,4 @@ namespace Yi.Framework.Ddd.Application.Contracts set => _sorting = value; } } +} \ No newline at end of file