|
|
|
@ -78,15 +78,14 @@ public class VehicleInfoBean extends AbstractComponent {
|
|
|
|
|
if (keepLog()) {
|
|
|
|
|
Map<String, Object> params = Map.of(
|
|
|
|
|
"req", req,
|
|
|
|
|
"info", result.getBasicInfo(),
|
|
|
|
|
"info", basicInfo,
|
|
|
|
|
"msg", result.getResult(),
|
|
|
|
|
"currentUser", currentUser()
|
|
|
|
|
);
|
|
|
|
|
vehicleInfoMapper.insertBasicInfo(params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return BasicInfoResponse.getResult(resp);
|
|
|
|
|
// return result;
|
|
|
|
|
return result;
|
|
|
|
|
} catch (Throwable e) {
|
|
|
|
|
log(e, "자동차 기본정보 조회");
|
|
|
|
|
return new BasicInfoResponse().setError(e);
|
|
|
|
@ -177,8 +176,7 @@ public class VehicleInfoBean extends AbstractComponent {
|
|
|
|
|
create(req, resp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return json.parse(data, BasicInfoExtResponse.class);
|
|
|
|
|
// return resp;
|
|
|
|
|
return resp;
|
|
|
|
|
} else {
|
|
|
|
|
Throwable error = sresp.getError();
|
|
|
|
|
if (error != null)
|
|
|
|
|