select feedback_id, content, user_id, create_by, create_time, update_by, update_time, del_flag from tb_question_feedback
insert into tb_question_feedback
feedback_id,
content,
user_id,
create_by,
create_time,
update_by,
update_time,
del_flag,
#{feedbackId},
#{content},
#{userId},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{delFlag},
update tb_question_feedback
content = #{content},
user_id = #{userId},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
del_flag = #{delFlag},
where feedback_id = #{feedbackId}
delete from tb_question_feedback where feedback_id = #{feedbackId}
delete from tb_question_feedback where feedback_id in
#{feedbackId}