This commit is contained in:
aozhiwei 2022-11-25 13:19:47 +08:00
parent e6325d171b
commit 9047597111

View File

@ -24,6 +24,15 @@ class FeeBack {
if (err) {
throw err;
}
{
const {err, rows} = await conn.execQuery(
'SELECT * FROM t_transaction_prefee WHERE createtime < ?',
[
nowTime - 3600 * 24 - 3600 * 12
]
);
console.log(rows);
}
} catch (err) {
console.log(err);
}