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