#HMS-175 Fixed

This commit is contained in:
力力 武 2024-09-19 20:46:43 +08:00
parent 5051c5d71f
commit f231f0f4e0

View File

@ -18,7 +18,6 @@ def get_rfid_by_datetime(start_datetime,end_datetime,reader):
query = f"SELECT biz_time, biz_data FROM rhm_insure_dev.notify_log WHERE notify_group = '{rfid_group_name}' AND reader_name = '{reader}' AND biz_time BETWEEN '{start_datetime}' AND '{end_datetime}' ORDER BY biz_time ASC"
cursor.execute(query)
result = cursor.fetchall()
print(query)
return result
def close():