id,
project_id,
agreement_plan,
completion_time,
plan_content,
creation_time,
update_time,
affirm_time,
accomplish
insert into new_fight_project_plan
id,
project_id,
agreement_plan,
completion_time,
plan_content,
affirm_time,
accomplish,
creation_time
values
#{item.id},
#{item.projectId},
#{item.agreementPlan},
#{item.completionTime},
#{item.planContent},
#{item.affirmTime},
#{item.accomplish},
sysdate()
update new_fight_project_plan
id=#{item.id},
project_id=#{item.projectId},
agreement_plan=#{item.agreementPlan},
completion_time=#{item.completionTime},
plan_content=#{item.planContent},
affirm_time=#{item.affirmTime},
accomplish=#{item.accomplish},
update_time=sysdate()
where id = #{item.id}
delete from new_fight_project_plan
1=1
and id=#{id}
and project_id=#{projectId}