select tc_id, t_id, condition_name, condition_field, condition_notes, condition_type, condition_default_value, sort, condition_table_name,
condition_table_field_name, condition_table_field_key, condition_datasource, component_type, component_size, component_icon, is_hidden, del_flag, create_by, create_time, update_by, update_time from drag_table_condition
insert into drag_table_condition
${fieldName}
values
#{value}
insert into drag_table_condition
(t_id,condition_field,create_by_id,condition_default_value)
values
(#{item.tId},#{item.conditionField},#{item.createById},#{item.conditionDefaultValue})
update drag_table_condition set
${key}=#{field}
${key}=#{value}
where tc_id = #{tcId}
delete from drag_table_condition
${key} in
#{v}
delete from drag_table_condition where t_id in
#{ids}