select id, exploration_data, exploration_type, create_by, create_time, update_by, update_time
from scheme_exploration
insert into scheme_exploration (
exploration_data,exploration_type,create_by,
create_time
)values(
#{explorationData},#{explorationType},#{createBy},
sysdate()
)
update scheme_exploration
exploration_data = #{explorationData},exploration_type = #{explorationType},update_by = #{updateBy},
update_time = sysdate()
where id = #{id}
delete from scheme_exploration where id = #{id}
delete from scheme_exploration where id in
#{id}