select * from drive_school_feedback
insert into drive_school_feedback
id,userId,content,jlContent,jlId,jlName,jxId,jxName,create_time,create_by,update_time,update_by,evaluateType,userName,likes,#{id},#{userId},#{content},#{jlContent},#{jlId},#{jlName},#{jxId},#{jxName},#{createTime},#{createBy},#{updateTime},#{updateBy},#{evaluateType},#{userName},#{likes},
insert into drive_school_feedback (userId, content, create_time) values (#{userId}, #{content}, now())
update drive_school_feedback
userId = #{userId},content = #{content},create_time = #{createTime},create_by = #{createBy},update_time = #{updateTime},update_by = #{updateBy},evaluateType = #{evaluateType},
where id = #{id}
delete from drive_school_feedback where id = #{id}
delete from drive_school_feedback where id in
#{id}