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