master
fst1996 2023-11-29 15:22:09 +08:00
parent 5d9c079867
commit 93a2ec4fba
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class TopLineServiceImpl extends ServiceImpl<TopicCarMapper, TopicCar> i
} }
//把车辆状态修改为上线 1 //把车辆状态修改为上线 1
topicCar.setStatus(1); topicCar.setStatus(1);
carMapper.update(topicCar,new QueryWrapper<TopicCar>().eq("carVinId",getTopicReq.getCarVin())); carMapper.updateById(topicCar);
return topicCar.getTopic(); return topicCar.getTopic();
}catch (Exception e){ }catch (Exception e){
log.info(e.getMessage()); log.info(e.getMessage());