1
This commit is contained in:
parent
567a0cc278
commit
6b95277886
@ -69,11 +69,7 @@ class DbEventProcess extends BaseService {
|
||||
}
|
||||
|
||||
getEndIdx() {
|
||||
if (utils.hasKey(DbEventProcess.#tableMaxIdxHash, this.getTableName())) {
|
||||
return DbEventProcess.#tableMaxIdxHash[this.getTableName()];
|
||||
} else {
|
||||
return BigInt(0);
|
||||
}
|
||||
return this.getMaxIdx();
|
||||
}
|
||||
|
||||
getNetId() {
|
||||
@ -157,7 +153,11 @@ class DbEventProcess extends BaseService {
|
||||
}
|
||||
|
||||
getMaxIdx() {
|
||||
return 0;
|
||||
if (utils.hasKey(DbEventProcess.#tableMaxIdxHash, this.getTableName())) {
|
||||
return DbEventProcess.#tableMaxIdxHash[this.getTableName()];
|
||||
} else {
|
||||
return BigInt(0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user