From 8a9e76825a9b735a0a76694c22cf3c8de12d2620 Mon Sep 17 00:00:00 2001 From: lxw Date: Thu, 13 Jun 2024 11:44:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=87=E6=BB=A4carList=20=E6=9C=AA=E4=B8=8A?= =?UTF-8?q?=E6=8A=A5=E6=97=B6=E7=9A=84=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebStarter/Controllers/SwapMonitorController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WebStarter/Controllers/SwapMonitorController.cs b/WebStarter/Controllers/SwapMonitorController.cs index e515852..0771f9b 100644 --- a/WebStarter/Controllers/SwapMonitorController.cs +++ b/WebStarter/Controllers/SwapMonitorController.cs @@ -275,6 +275,7 @@ public class SwapMonitorController : ControllerBase return Result>.Success(new List()); } - return Result>.Success(carInfoList); + + return Result>.Success(carInfoList.Where(i => i.CarNo.Length >= 17).ToList()); } } \ No newline at end of file