时间:2021-07-01 10:21:17 帮助过:2人阅读
jdbcType date 年月日
timestamp 年月日时分秒
不写的情况
mybatis默认转换为有时分秒
建议写成
<if test="modifyTime != null" >
MODIFY_TIME = #{modifyTime},
</if>
或
<if test="modifyTime != null" >
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
</if>
mybatis jdbcType date没有时分秒
标签:test 默认 body tis pre type mes bat ati