id, feedback_id, reply_content, reply_time, replier_id
delete from ope_feedback_reply
where id = #{id,jdbcType=BIGINT}
insert into ope_feedback_reply (id, feedback_id, reply_content,
reply_time, replier_id)
values (#{id,jdbcType=BIGINT}, #{feedbackId,jdbcType=BIGINT}, #{replyContent,jdbcType=VARCHAR},
#{replyTime,jdbcType=TIMESTAMP}, #{replierId,jdbcType=BIGINT})
insert into ope_feedback_reply
id,
feedback_id,
reply_content,
reply_time,
replier_id,
#{id,jdbcType=BIGINT},
#{feedbackId,jdbcType=BIGINT},
#{replyContent,jdbcType=VARCHAR},
#{replyTime,jdbcType=TIMESTAMP},
#{replierId,jdbcType=BIGINT},
update ope_feedback_reply
feedback_id = #{feedbackId,jdbcType=BIGINT},
reply_content = #{replyContent,jdbcType=VARCHAR},
reply_time = #{replyTime,jdbcType=TIMESTAMP},
replier_id = #{replierId,jdbcType=BIGINT},
where id = #{id,jdbcType=BIGINT}
update ope_feedback_reply
set feedback_id = #{feedbackId,jdbcType=BIGINT},
reply_content = #{replyContent,jdbcType=VARCHAR},
reply_time = #{replyTime,jdbcType=TIMESTAMP},
replier_id = #{replierId,jdbcType=BIGINT}
where id = #{id,jdbcType=BIGINT}