|
@@ -40,10 +40,11 @@ public class CallApiLogServiceImpl extends ServiceImpl<CallApiLogMapper, CallApi
|
|
|
callApiLog.setOrderNumber(orderNumber);
|
|
|
callApiLog.setName(apiName);
|
|
|
callApiLog.setApiResultData(result);
|
|
|
+ this.save(callApiLog);
|
|
|
}else {
|
|
|
callApiLog.setApiResultData(result);
|
|
|
+ this.updateById(callApiLog);
|
|
|
}
|
|
|
- this.saveOrUpdate(callApiLog);
|
|
|
}
|
|
|
|
|
|
@Override
|