数据库中字段是timestamp,java如何传值?

Mapper 中参数类型用  Date

xml中接收值用TIMESTAMP     :      #{startTime,jdbcType=TIMESTAMP}

注: xml中判断参数是否有值, 只用null就行,千万不能用字符串startTime != '' ,如下:

                 
                    and start_time >= #{startTime,jdbcType=TIMESTAMP} 
                

你可能感兴趣的:(Java,数据库,java,sql)