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