select examinee_id, paper_id, customer_code, begin_time, end_time, state, score_level, score, score_rate, ranking, grade_ranking, choose_count, choose_total, subjective_count, subjective_total from mxjb_paper_examinee
insert into mxjb_paper_examinee
paper_id,
customer_code,
begin_time,
end_time,
state,
score_level,
score,
score_rate,
ranking,
grade_ranking,
choose_count,
choose_total,
subjective_count,
subjective_total,
#{paperId},
#{customerCode},
#{beginTime},
#{endTime},
#{state},
#{scoreLevel},
#{score},
#{scoreRate},
#{ranking},
#{gradeRanking},
#{chooseCount},
#{chooseTotal},
#{subjectiveCount},
#{subjectiveTotal},
update mxjb_paper_examinee
paper_id = #{paperId},
customer_code = #{customerCode},
begin_time = #{beginTime},
end_time = #{endTime},
state = #{state},
score_level = #{scoreLevel},
score = #{score},
score_rate = #{scoreRate},
ranking = #{ranking},
grade_ranking = #{gradeRanking},
choose_count = #{chooseCount},
choose_total = #{chooseTotal},
subjective_count = #{subjectiveCount},
subjective_total = #{subjectiveTotal},
where examinee_id = #{examineeId}
delete from mxjb_paper_examinee where examinee_id = #{examineeId}
delete from mxjb_paper_examinee where examinee_id in
#{examineeId}