输入banner图图片脚本导航/分类

mybatis jdbcType date没有时分秒

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