From 6b2f831329adfc384d13ea7b1d4bcfcba74a1913 Mon Sep 17 00:00:00 2001 From: wangxu <1318272526@qq.com> Date: Fri, 14 Nov 2025 14:59:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=B7=AF=E5=8F=A3=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E8=AF=8A=E6=96=AD=E8=AF=A6=E6=83=85bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/db_cross_delay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/db_cross_delay.py b/app/db_cross_delay.py index e3cac3b..f4bbc90 100644 --- a/app/db_cross_delay.py +++ b/app/db_cross_delay.py @@ -39,7 +39,7 @@ class CrossDbHelper(TableDbHelperBase): def query_cross_examine_record_detail(self, start_hm, first_date, crossid): sql = """ - select * from cross_doctor_matedata.cross_phase_problems_record_detail where crossid = '%s' and start_hm = '%s' and first_date = %s + select * from cross_doctor_matedata.cross_phase_problems_record where crossid = '%s' and start_hm = '%s' and first_date = %s """ % (crossid, start_hm, first_date) return self.do_select(sql)