This commit is contained in:
lwl0608 2024-02-04 23:52:28 +08:00
parent 184baa0618
commit 051de654ee
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class S:
def get_orders(self):
sql = '''
select * from vas_coin_order where ct<{} and order_status=1 and product_id='membership'
'''.format(time.time() - 86400 * 7)
'''.format(int(time.time()) - 86400 * 7)
print(sql)
docs = self.mysql_db_vas.query(sql)
if not docs: