feat(gvg): 玩家驻扎排行榜

This commit is contained in:
luying
2023-02-02 20:29:33 +08:00
parent 92191cbcca
commit fc2a86ad81
16 changed files with 190 additions and 61 deletions

View File

@@ -32,7 +32,7 @@ export default class HiddenData extends BaseModel {
}
public static async findNextData(now: number) {
console.log('####', now)
// console.log('####', now)
let result: HiddenDataModelType = await HiddenDataModel.findOne({ refTime: { $gt: now } }).sort({ refTime: 1 });
return result;
}