Commit 7b8df0b0 authored by gary's avatar gary

1、fixbug

parent d060add7
...@@ -777,7 +777,10 @@ public class EbsApiServiceImpl implements EbsApiService { ...@@ -777,7 +777,10 @@ public class EbsApiServiceImpl implements EbsApiService {
dataImportLog.setId(id); dataImportLog.setId(id);
dataImportLog.setRecordSize(size); dataImportLog.setRecordSize(size);
dataImportLog.setImportResult(true); dataImportLog.setImportResult(true);
dataImportLogMapper.updateByPrimaryKeySelective(dataImportLog); int res = dataImportLogMapper.updateByPrimaryKeySelective(dataImportLog);
if (res < 0) {
logger.warn(String.format("无调用记录[%s]", id));
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment