问题: - 导入成功条数显示为负数 - 原因:成功数量计算使用 validRecords.size() - failures.size() - 但没有使用实际的数据库操作返回值 修复: - saveBatchWithUpsert 和 saveBatch 方法现在返回 int - 累加实际的数据库影响行数 - 使用 actualSuccessCount 变量跟踪真实成功数量 影响范围: - CcdiIntermediaryPersonImportServiceImpl - CcdiIntermediaryEntityImportServiceImpl
29 lines
604 B
JSON
29 lines
604 B
JSON
{
|
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
|
"name": "fstream",
|
|
"description": "Advanced file system stream things",
|
|
"version": "1.0.12",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/npm/fstream.git"
|
|
},
|
|
"main": "fstream.js",
|
|
"engines": {
|
|
"node": ">=0.6"
|
|
},
|
|
"dependencies": {
|
|
"graceful-fs": "^4.1.2",
|
|
"inherits": "~2.0.0",
|
|
"mkdirp": ">=0.5 0",
|
|
"rimraf": "2"
|
|
},
|
|
"devDependencies": {
|
|
"standard": "^4.0.0",
|
|
"tap": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"test": "standard && tap examples/*.js"
|
|
},
|
|
"license": "ISC"
|
|
}
|