PostgreSQL, MySQL and SQLSERVER all support JdbcType. NULL type, but Oracle does not. This problem also caused mybatis to report an error when adapting.
For example, if #{submitDate} was previously configured, it will report an error in oracle: an error occurred when setting an empty parameter.
Change it to #{submitDate, jdbcType=DATE}. Note that jdbcType is case-sensitive.