id, user_id, user_name, real_name, content, create_time
delete from t_user_event_log
where id = #{id,jdbcType=INTEGER}
insert into t_user_event_log (id, user_id, user_name,
real_name, content, create_time
)
values (#{id,jdbcType=INTEGER}, #{userId,jdbcType=INTEGER}, #{userName,jdbcType=VARCHAR},
#{realName,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
)
insert into t_user_event_log
id,
user_id,
user_name,
real_name,
content,
create_time,
#{id,jdbcType=INTEGER},
#{userId,jdbcType=INTEGER},
#{userName,jdbcType=VARCHAR},
#{realName,jdbcType=VARCHAR},
#{content,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
update t_user_event_log
user_id = #{userId,jdbcType=INTEGER},
user_name = #{userName,jdbcType=VARCHAR},
real_name = #{realName,jdbcType=VARCHAR},
content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
where id = #{id,jdbcType=INTEGER}
update t_user_event_log
set user_id = #{userId,jdbcType=INTEGER},
user_name = #{userName,jdbcType=VARCHAR},
real_name = #{realName,jdbcType=VARCHAR},
content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}