select pro_id, sign_code, bid_code, pro_code, pro_name, status, plan_start_time,
plan_end_time, start_time, end_time, diff_day, plan_cost, actual_cost, risk_level,
suggestion, task_name
from tb_project_new
insert into tb_project_new
pro_id,
sign_code,
bid_code,
pro_code,
pro_name,
status,
plan_start_time,
plan_end_time,
start_time,
end_time,
diff_day,
plan_cost,
actual_cost,
risk_level,
#{proId},
#{signCode},
#{bidCode},
#{proCode},
#{proName},
#{status},
#{planStartTime},
#{planEndTime},
#{startTime},
#{endTime},
#{diffDay},
#{planCost},
#{actualCost},
#{riskLevel},
update tb_project_new
sign_code = #{signCode},
bid_code = #{bidCode},
pro_code = #{proCode},
pro_name = #{proName},
status = #{status},
plan_start_time = #{planStartTime},
plan_end_time = #{planEndTime},
start_time = #{startTime},
end_time = #{endTime},
diff_day = #{diffDay},
plan_cost = #{planCost},
actual_cost = #{actualCost},
risk_level = #{riskLevel},
where pro_id = #{proId}
delete from tb_project_new where pro_id = #{proId}
delete from tb_project_new where pro_id in
#{proId}