update analysis_result
set on_off_call = #{onOffCall,jdbcType=INTEGER}
where batch_code = #{batchCode,jdbcType=VARCHAR}
update analysis_result
set call_status = 1
where batch_code = #{batchCode,jdbcType=VARCHAR}
update analysis_result
set analysis_state = 10,
err_state = 0,
err_code = '',
err_info = '',
analysis_progress = 0.00,
data_start_time = null,
data_end_time = null,
data_type_code = '',
analysis_start_time = null,
analysis_finish_time = null
where analysis_state = -1 or analysis_state = 30
and batch_code = #{batchCode,jdbcType=VARCHAR}
update analysis_result
set
err_state = 0,
err_code = '',
err_info = '',
data_start_time = #{beginTime,jdbcType=INTEGER},
data_end_time = #{endTime,jdbcType=VARCHAR},
data_type_code = #{scada,jdbcType=VARCHAR},
analysis_start_time = now(),
update_time = now(),
update_by = #{updateBy,jdbcType=INTEGER}
where batch_code = #{dataBatchNum,jdbcType=VARCHAR}