1
This commit is contained in:
parent
567a0cc278
commit
6b95277886
@ -69,11 +69,7 @@ class DbEventProcess extends BaseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getEndIdx() {
|
getEndIdx() {
|
||||||
if (utils.hasKey(DbEventProcess.#tableMaxIdxHash, this.getTableName())) {
|
return this.getMaxIdx();
|
||||||
return DbEventProcess.#tableMaxIdxHash[this.getTableName()];
|
|
||||||
} else {
|
|
||||||
return BigInt(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getNetId() {
|
getNetId() {
|
||||||
@ -157,7 +153,11 @@ class DbEventProcess extends BaseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getMaxIdx() {
|
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