From b96790df61b2417d8e8017867bff33595f9c9471 Mon Sep 17 00:00:00 2001 From: zhaoy <137053305@qq.com> Date: Thu, 30 May 2024 12:23:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=9E=E6=80=A7=E5=80=BC=E6=8E=92=E5=BA=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DataBase/Services/GoodsAttributeService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs b/BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs index 16a92fa..4b7f230 100644 --- a/BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs +++ b/BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs @@ -331,9 +331,8 @@ namespace BPA.Franchisee.Application.FranchiseeCenter.GoodsServices GoodsAttributeId = p.GoodsAttributeId, AttributeValue = x.AttributeValue, Sort = x.Sort - }).ToList(); - }) - .OrderBy(x=>x.Sort,OrderByType.Asc) + }).OrderBy(x => x.Sort, OrderByType.Asc).ToList(); + }) .OrderBy(x=>x.Sort,OrderByType.Asc) .ToListAsync(); return goodsAttributeList; }