This commit is contained in:
dy 2023-12-21 23:40:41 +08:00
parent be5d421393
commit 50c52556e0
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
import {ctor} from "../global";
import {initMongoDB} from "../setMongodb";
async function start() {
await initMongoDB()
// 刷新活动配置
console.log(`删除错误活动数据开始...`);
await G.mongodb.collection("hdinfo").deleteOne({hdid: 8000})
console.log(`删除错误活动数据完成...`);
}
ctor();
start().then(() => {
let s = 0;
setInterval(() => {
s += 1;
console.log(new Date().format("MM-dd hh:mm:ss"));
if (s >= 3) process.exit(1);
}, 1000)
console.log("逻辑执行完成...等待退出!!!");
});

View File

@ -178,6 +178,7 @@ export class PayFun {
if (payed) {
console.log(uid, payId, payArgs, orderNo);
console.log('订单号已存在');
return;
}
}