id, content, create_time
delete from t_text_content
where id = #{id,jdbcType=INTEGER}
insert into t_text_content (id, content, create_time
)
values (#{id,jdbcType=INTEGER}, #{content,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
)
insert into t_text_content
id,
content,
create_time,
#{id,jdbcType=INTEGER},
#{content,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
update t_text_content
content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
where id = #{id,jdbcType=INTEGER}
update t_text_content
set content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}