From 610994fdcb3c403a6cced4804adb622da9d67f40 Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Fri, 13 Jan 2023 16:01:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=84=E5=88=99=E8=B0=83?= =?UTF-8?q?=E5=8F=96=E5=A2=9E=E5=8A=A0=E8=A7=84=E5=88=99=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=EF=BC=8C=E4=BC=98=E5=85=88=E5=B1=95=E7=A4=BA?= =?UTF-8?q?ERROR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/RulesEngine/RulesEngineClientService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Myshipping.Application/Service/RulesEngine/RulesEngineClientService.cs b/Myshipping.Application/Service/RulesEngine/RulesEngineClientService.cs index 144349a3..8e46834d 100644 --- a/Myshipping.Application/Service/RulesEngine/RulesEngineClientService.cs +++ b/Myshipping.Application/Service/RulesEngine/RulesEngineClientService.cs @@ -192,7 +192,7 @@ namespace Myshipping.Application if (ruleDetailList != null && ruleDetailList.Count > 0) { - result.rows = ruleDetailList; + result.rows = ruleDetailList.OrderBy(t=>t.ErrorType).ToList(); } _logger.LogInformation("批次={no} 返回结果{msg}", batchNo,JSON.Serialize(result));