From 3a30080330e54a98823be144a4a61bfa81ccd869 Mon Sep 17 00:00:00 2001 From: wangxu <1318272526@qq.com> Date: Wed, 12 Nov 2025 14:54:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BF=AE=E6=94=B9=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E8=AF=8A=E6=96=AD=E7=8A=B6=E6=80=81bug?= 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 cbc3c69..e9b5086 100644 --- a/app/db_cross_delay.py +++ b/app/db_cross_delay.py @@ -45,6 +45,6 @@ class CrossDbHelper(TableDbHelperBase): def update_cross_examine_record_state_sql(self, crossid, first_date, end_date, start_hm, state): sql = """ - update cross_doctor_matedata.cross_phase_problems_record set state = '%s', end_date = '%s' where crossid = '%s' and first_date = '%s' and start_hm = %s + update cross_doctor_matedata.cross_phase_problems_record set final_state = '%s', end_date = '%s' where crossid = '%s' and first_date = '%s' and start_hm = %s """ % (state, end_date, crossid, first_date, start_hm) return self.do_execute(sql)