select id, work_content, work_user, work_time, project_id from project_work_progress
insert into project_work_progress
work_content,work_user,work_time,project_id,#{workContent},#{workUser},#{workTime},#{projectId},
insert ignore into project_work_progress (work_content, work_user, work_time, project_id) values
(#{item.workContent}, #{item.workUser}, #{item.workTime}, #{item.projectId})
update project_work_progress
work_content = #{workContent},work_user = #{workUser},work_time = #{workTime},project_id = #{projectId},
where id = #{id}
delete from project_work_progress where id = #{id}
delete from project_work_progress where id in
#{id}