|
@@ -79,9 +79,9 @@ public class TbBusinessCarService extends ServiceImpl<TbBusinessCarMapper, TbBus
|
|
|
* 查集合 - 根据条件(参数为空时代表忽略指定条件)
|
|
|
*/
|
|
|
List<TbBusinessCar> getList(SoMap so) {
|
|
|
+ List<TbBusinessCar> list = tbBusinessCarMapper.getList(so);
|
|
|
List<TbCarNoColor> carNoColors = tbCarNoColorService.getFreeColor();
|
|
|
String colorStr= carNoColors.stream().map(TbCarNoColor::getCarNoColor).collect(Collectors.joining(""));
|
|
|
- List<TbBusinessCar> list = tbBusinessCarMapper.getList(so);
|
|
|
for (TbBusinessCar tbBusinessCar : list) {
|
|
|
String color=tbBusinessCar.getColor();
|
|
|
TbCar tbCar = tbCarService.findByCardNo(tbBusinessCar.getCarNo());
|