问题: - 导入成功条数显示为负数 - 原因:成功数量计算使用 validRecords.size() - failures.size() - 但没有使用实际的数据库操作返回值 修复: - saveBatchWithUpsert 和 saveBatch 方法现在返回 int - 累加实际的数据库影响行数 - 使用 actualSuccessCount 变量跟踪真实成功数量 影响范围: - CcdiIntermediaryPersonImportServiceImpl - CcdiIntermediaryEntityImportServiceImpl
fs-constants
Small module that allows you to get the fs constants across Node and the browser.
npm install fs-constants
Previously you would use require('constants') for this in node but that has been
deprecated and changed to require('fs').constants which does not browserify.
This module uses require('constants') in the browser and require('fs').constants in node to work around this
Usage
var constants = require('fs-constants')
console.log('constants:', constants)
License
MIT