This commit is contained in:
lwl0608 2024-02-04 23:47:59 +08:00
parent 7fd4c1366e
commit 99b3d936b6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class S:
sql = '''
select * from vas_coin_order where ct<{} and order_status=1 and product_id='membership'
'''.format(time.time() - 86400 * 7)
docs = self.table_vas_coin_order.query(sql)
docs = self.table_vas_order.query(sql)
if not docs:
return
print(type(docs), docs)