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)