修改ota车型排序

This commit is contained in:
gaosong
2023-11-26 14:36:31 +08:00
parent c64aa2a678
commit ba39443472
@@ -999,8 +999,10 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
}
}
}
List<String> carList = new ArrayList<>(carSet);
Collections.sort(carList);
result.put("plannedBpLaunchBatchList", plannedBpLaunchBatchList);
result.put("carSet", carSet);
result.put("carSet", carList);
result.put("marketSet", marketSet);
}
return result;
@@ -1036,7 +1038,9 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
} else {
resList.add("All");
}
resList.addAll(vehicleSet);
List<String> carList = new ArrayList<>(vehicleSet);
Collections.sort(carList);
resList.addAll(carList);
return resList;
}