select plan_id, plan_title, plan_type, plan_level, plan_contents, plan_equipment, icon_url, create_by, create_time, update_by, update_time, is_del, remarks from t_plan_info
insert into t_plan_info
plan_title,
plan_type,
plan_level,
plan_contents,
plan_equipment,
icon_url,
create_by,
create_time,
update_by,
update_time,
is_del,
remarks,
#{planTitle},
#{planType},
#{planLevel},
#{planContents},
#{planEquipment},
#{iconUrl},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{isDel},
#{remarks},
update t_plan_info
plan_title = #{planTitle},
plan_type = #{planType},
plan_level = #{planLevel},
plan_contents = #{planContents},
plan_equipment = #{planEquipment},
icon_url = #{iconUrl},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
is_del = #{isDel},
remarks = #{remarks},
where plan_id = #{planId}
delete from t_plan_info where plan_id = #{planId}
delete from t_plan_info where plan_id in
#{planId}