id, user_id, topic, argument_content, position, create_time
INSERT INTO argument_history (
user_id, topic, argument_content, position
)
VALUES (
#{userId,jdbcType=INTEGER},
#{topic,jdbcType=VARCHAR},
#{argumentContent,jdbcType=LONGVARCHAR},
#{position,jdbcType=VARCHAR, typeHandler=org.apache.ibatis.type.EnumTypeHandler}
)