<if test="createTime != null">
#{createTime,jdbcType=Date},
</if>
将涉及的相关字段的jdbcType改为 TIMESTAMP
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="createTime != null">
#{createTime,jdbcType=Date},
</if>
将涉及的相关字段的jdbcType改为 TIMESTAMP
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>