select id, com_id, project_id, plan_id, task_id, task_unique_id, task_name, bim_id, schedule_percent, finish_date, description, images, is_del, create_by, create_user_id, create_date, update_by, update_date from pro_plan_schedule
insert into pro_plan_schedule
com_id,
project_id,
plan_id,
task_id,
task_unique_id,
task_name,
bim_id,
schedule_percent,
finish_date,
description,
images,
is_del,
create_by,
create_user_id,
create_date,
update_by,
update_date,
#{comId},
#{projectId},
#{planId},
#{taskId},
#{taskUniqueId},
#{taskName},
#{bimId},
#{schedulePercent},
#{finishDate},
#{description},
#{images},
#{isDel},
#{createBy},
#{createUserId},
#{createDate},
#{updateBy},
#{updateDate},
update pro_plan_schedule
com_id = #{comId},
project_id = #{projectId},
plan_id = #{planId},
task_id = #{taskId},
task_unique_id = #{taskUniqueId},
task_name = #{taskName},
bim_id = #{bimId},
schedule_percent = #{schedulePercent},
finish_date = #{finishDate},
description = #{description},
images = #{images},
is_del = #{isDel},
create_by = #{createBy},
create_user_id = #{createUserId},
create_date = #{createDate},
update_by = #{updateBy},
update_date = #{updateDate},
where id = #{id}
delete from pro_plan_schedule where id = #{id}
delete from pro_plan_schedule where id in
#{id}