select id, proc_inst_id,project_pool_id, project_overview, project_sparkle, participants_id, participants, remark, del_flag, create_by, create_time, update_by, update_time from t_project_approval
insert into t_project_approval
id,
proc_inst_id,
project_pool_id,
project_overview,
project_sparkle,
participants_id,
participants,
remark,
del_flag,
create_by,
create_time,
update_by,
update_time,
need_meeting,
status,
#{id},
#{procInstId},
#{projectPoolId},
#{projectOverview},
#{projectSparkle},
#{participantsId},
#{participants},
#{remark},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{needMeeting},
#{status},
update t_project_approval
project_pool_id = #{projectPoolId},
project_overview = #{projectOverview},
project_sparkle = #{projectSparkle},
participants_id = #{participantsId},
participants = #{participants},
remark = #{remark},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
need_meeting = #{needMeeting},
status = #{status},
where id = #{id}
delete from t_project_approval where id = #{id}
delete from t_project_approval where id in
#{id}