数据库中字段是timestamp,java如何传值?
Mapper 中参数类型用 Datexml中接受值用TIMESTAMP:#{startTime,jdbcType=TIMESTAMP}注: xml中判断参数是否有值, 只用null就行,千万不能用字符串startTime != '' ,如下:<if test="startTime!= null">and start_time >= #{startTime,jdbcType
·
Mapper 中参数类型用 Date
xml中接收值用TIMESTAMP : #{startTime,jdbcType=TIMESTAMP}
注: xml中判断参数是否有值, 只用null就行,千万不能用字符串startTime != '' ,如下:
<if test="startTime!= null">
and start_time >= #{startTime,jdbcType=TIMESTAMP}
</if>
更多推荐
已为社区贡献2条内容
所有评论(0)