select thesis_id, teacher_id, name, title, issue, publication, level, year, evidence, check_status, check_person, college, returnReason, submitYear from sys_teacher_thesis
insert into sys_teacher_thesis
teacher_id,
name,
title,
issue,
publication,
level,
year,
evidence,
check_status,
check_person,
college,
returnReason,
submitYear,
#{teacherId},
#{name},
#{title},
#{issue},
#{publication},
#{level},
#{year},
#{evidence},
#{checkStatus},
#{checkPerson},
#{college},
#{returnReason},
#{submitYear},
update sys_teacher_thesis
teacher_id = #{teacherId},
name = #{name},
title = #{title},
issue = #{issue},
publication = #{publication},
level = #{level},
year = #{year},
evidence = #{evidence},
check_status = #{checkStatus},
check_person = #{checkPerson},
college = #{college},
returnReason = #{returnReason},
submitYear = #{submitYear},
where thesis_id = #{thesisId}
delete from sys_teacher_thesis where thesis_id = #{thesisId}
delete from sys_teacher_thesis where thesis_id in
#{thesisId}