insert into tb_pluss_questions_answers(question,answer,createDt,seq,status)VALUES(#{question},#{answer},NOW(),#{seq},#{status})
insert into tb_pluss_questions_answers(question,answer,createDt,seq,status) VALUES
(#{question},#{answer},#{createDt},#{seq},#{status} )
update tb_pluss_questions_answers
question = #{question},
answer = #{answer},
createDt = #{createDt},
seq = #{seq},
status = #{status}
where id=#{id}
DELETE FROM tb_pluss_questions_answers where id=#{id}