@@ -119,6 +119,9 @@ public class ActiveManagerImpl extends AbstractCommManager implements ActiveMana | |||
}else { | |||
// 非本人办理,查询车辆信息表 | |||
QtkVehicleInfo info = vehicleInfoRepo.findByVehicleId(requestDTO.getVehicleId()); | |||
if(info == null){ | |||
throw new ManagerException("未查到车辆信息!"); | |||
} | |||
DeviceReactivateModel model = new DeviceReactivateModel(); | |||
BeanTools.copyProperties(info, model); | |||
model.setVehicleType(info.getType()); |