id,
content,
score,
project_id,
user_id,
creation_time,
update_time
insert into new_fight_project_evaluate
id,
project_id,
user_id,
content,
score,
creation_time
values
#{item.id},
#{item.projectId},
#{item.userId},
#{item.content},
#{item.score},
sysdate()
update new_fight_project_evaluate
id=#{item.id},
project_id=#{item.projectId},
user_id=#{item.userId},
content=#{item.content},
score=#{item.score},
update_time=sysdate()
where id = #{item.id}
delete from new_fight_project_evaluate
1=1
and id=#{id}
and project_id=#{projectId}